Skip to content

Commit

Permalink
Update Utility.cpp
Browse files Browse the repository at this point in the history
Fix RC1
  • Loading branch information
enginelesscc authored Sep 29, 2024
1 parent c507c01 commit 66e1da2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ ea_t find_binary2(ea_t start_ea, ea_t end_ea, LPCSTR pattern, LPCSTR file, int l
compiled_binpat_vec_t searchVec;
qstring errorStr;
if (parse_binpat_str(&searchVec, start_ea, pattern, 16, PBSENC_DEF1BPU, &errorStr))
return bin_search2(start_ea, end_ea, searchVec, (BIN_SEARCH_FORWARD | BIN_SEARCH_NOBREAK | BIN_SEARCH_NOSHOW));
return bin_search(start_ea, end_ea, searchVec, (BIN_SEARCH_FORWARD | BIN_SEARCH_NOBREAK | BIN_SEARCH_NOSHOW));
else
msg("** parse_binpat_str() failed! Reason: \"%s\" @ %s, line #%d **", errorStr.c_str(), __FILE__, __LINE__);
return BADADDR;
Expand Down

0 comments on commit 66e1da2

Please sign in to comment.