Skip to content

Commit

Permalink
Module: Fix function hashing typo.
Browse files Browse the repository at this point in the history
May help #10895.
  • Loading branch information
unknownbrackets committed Apr 10, 2018
1 parent 330bb81 commit da0173f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/MIPS/MIPSAnalyst.cpp
Expand Up @@ -878,7 +878,7 @@ namespace MIPSAnalyst {

for (auto iter = functions.begin(), end = functions.end(); iter != end; iter++) {
AnalyzedFunction &f = *iter;
if (Memory::IsValidRange(f.start, f.end - f.start + 4)) {
if (!Memory::IsValidRange(f.start, f.end - f.start + 4)) {
continue;
}

Expand Down

0 comments on commit da0173f

Please sign in to comment.