forked from qt-creator/qt-creator
Dumper: Avoid accessing None type
Change-Id: I627f9ec1d2f67c2a870f9cebca89f5f7b8d67020 Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
@@ -1599,7 +1599,9 @@ class Dumper(DumperBase):
|
||||
if not symtab is None:
|
||||
objfile = fromNativePath(symtab.objfile.filename)
|
||||
fileName = fromNativePath(symtab.filename)
|
||||
fullName = fromNativePath(symtab.fullname())
|
||||
fullName = ""
|
||||
if symtab.fullname():
|
||||
fullname = fromNativePath(symtab.fullname())
|
||||
|
||||
if self.nativeMixed:
|
||||
if self.isReportableQmlFrame(functionName):
|
||||
|
||||
Reference in New Issue
Block a user