Dumper: Avoid accessing None type

Change-Id: I627f9ec1d2f67c2a870f9cebca89f5f7b8d67020
Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
Christian Stenger
2015-03-11 08:47:48 +01:00
parent f4a1f7460e
commit cce834aebc
+3 -1
View File
@@ -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):