Skip to content
Snippets Groups Projects
Commit f4ab6d4b authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

disabled fixing of calls to non-function entries. this is likely caused by...

disabled fixing of calls to non-function entries.  this is likely caused by mis-identification of functions and not a real reason to pin things
parent 6ee974f5
No related branches found
No related tags found
No related merge requests found
......@@ -250,6 +250,9 @@ class FixCalls_t : public TransformStep_t
// calls to not the entry of a function likely result
// from ida/rida mis-identification of functions. no need to fix them.
#if 0
assert(cfg->getEntry());
/* if the call instruction isn't to a function entry point */
......@@ -259,6 +262,7 @@ class FixCalls_t : public TransformStep_t
/* then we need to fix it */
return true;
}
#endif
/* check the entry block for thunks, etc. */
......
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