Skip to content

Commit

Permalink
Fix bug on comparaison
Browse files Browse the repository at this point in the history
  • Loading branch information
romainthomas committed Oct 29, 2017
1 parent 745e272 commit abbc264
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MachO/BinaryParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ void BinaryParser::parse_export_trie(uint64_t start, uint64_t current_offset, ui
return;
}

if (start < current_offset) {
if (start > current_offset) {
return;
}

Expand Down

0 comments on commit abbc264

Please sign in to comment.