Skip to content

Commit

Permalink
idaloader: update for IDA 9.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
emoose committed Oct 1, 2024
1 parent 41b678e commit a4dfd94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion idaloader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ void label_regsaveloads(ea_t start, ea_t end)

while (addr != BADADDR)
{
addr = bin_search3(addr, end, patterns[pat_idx], NULL, 8, BIN_SEARCH_CASE | BIN_SEARCH_FORWARD);
addr = bin_search(addr, end, patterns[pat_idx], NULL, 8, BIN_SEARCH_CASE | BIN_SEARCH_FORWARD);
if (addr == BADADDR)
break;

Expand Down

0 comments on commit a4dfd94

Please sign in to comment.