Skip to content

Commit

Permalink
Merge pull request #293 from gdt050579/dissasm_view
Browse files Browse the repository at this point in the history
dissasm fixed latest change that was breaking tests
  • Loading branch information
rzaharia authored Apr 12, 2024
2 parents 34499de + 66509f2 commit 78e0a06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GViewCore/src/View/DissasmViewer/x86_x64/DissasmX86.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ inline bool ExtractCallsToInsertFunctionNames(
callAddress += offsets[0].offset;
const auto it = callsMap.find(callAddress);
if (it != callsMap.end()) {
if (it->second)
if (!it->second)
continue;
}
const char* prefix = "sub_0x";
Expand Down

0 comments on commit 78e0a06

Please sign in to comment.