Skip to content
Snippets Groups Projects
Commit 52478c95 authored by hjk's avatar hjk
Browse files

debugger: fix dumper for function pointers

parent 9d6f5fc7
No related branches found
No related tags found
No related merge requests found
......@@ -836,6 +836,8 @@ def extractFields(type):
type0 = lookupType(str(type))
if not type0 is None:
type = type0
if type.code == gdb.TYPE_CODE_FUNC:
return []
#warn("TYPE 2: %s" % type)
fields = type.fields()
#warn("FIELDS: %s" % fields)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment