Dumper: Fix expected symbol when using procedure linking table

Change-Id: Ib0aee418d515d58e6ad949a7cc86b21edb3bed80
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Christian Stenger
2016-12-16 15:04:14 +01:00
committed by hjk
parent f2261e4661
commit c14c1cfc16
+1 -1
View File
@@ -1031,7 +1031,7 @@ class Dumper(DumperBase):
if line.find('msgHandlerGrabbed ') >= 0:
# [11] b 0x7ffff683c000 _ZN4MynsL17msgHandlerGrabbedE
# section .tbss Myns::msgHandlerGrabbed qlogging.cpp
ns = re.split('_ZN(\d*)(\w*)L17msgHandlerGrabbedE ', line)[2]
ns = re.split('_ZN?(\d*)(\w*)L17msgHandlerGrabbedE? ', line)[2]
if len(ns):
ns += '::'
break