semanticidentifier.py - Wrapper function - length

Issue #8 resolved
Alexander Hanel created an issue
if (func_end - func_ea) > 0 and (func_end - func_ea) < 0x100:

The wrapper checks for a function with an instruction line count of 0x100 aka 256. This value is too large. Wrapper functions are typically no more that 64 lines.

New Code

if (func_end - func_ea) > 0 and (func_end - func_ea) < 0x40:

Comments (1)

  1. Log in to comment