Skip to content

Commit

Permalink
ida_plugin: prevent export for the following types: __va_list_tag, va…
Browse files Browse the repository at this point in the history
…_list
  • Loading branch information
doronz88 committed Aug 7, 2020
1 parent 85e352e commit 2a38439
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions fa/ida_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,9 @@ def OnFormChange(self, fid):
if ti.get_type_name() == 'FA_CONSTS':
# convert into macro definitions
consts_ordinal = ordinal
elif ti.get_type_name() in ('__va_list_tag',
'va_list'):
continue
else:
ordinals.append(str(ordinal))

Expand Down

0 comments on commit 2a38439

Please sign in to comment.