Skip to content

Commit

Permalink
[REFACT] Fixed inconsistency in integer type
Browse files Browse the repository at this point in the history
  • Loading branch information
hasherezade committed Jan 23, 2022
1 parent b427726 commit 80c14f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scanners/iat_scanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ bool IATScanReport::saveNotRecovered(IN std::string fileName,
}
const ScannedModule* modExp = modulesInfo.findModuleContaining(addr);
const ULONGLONG module_start = (modExp) ? modExp->getStart() : peconv::fetch_alloc_base(hProcess, (BYTE*)addr);
const size_t offset = addr - module_start;
const ULONGLONG offset = addr - module_start;
report << std::hex << addr;
report << "["
<< std::hex << module_start << "+" << offset
Expand Down

0 comments on commit 80c14f2

Please sign in to comment.