From ab39d4ee5812fbffd8180e07a6ba8094614dc304 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Sat, 28 Sep 2019 19:43:58 +0200 Subject: pattern scanning works as expected --- include/PatternScanner.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/PatternScanner.h') diff --git a/include/PatternScanner.h b/include/PatternScanner.h index aa011f8..d374d29 100644 --- a/include/PatternScanner.h +++ b/include/PatternScanner.h @@ -39,10 +39,10 @@ public: void SetScanAddress(UINT64 startAddress) { m_LowAddress = startAddress; } - bool Scan(MODULE_DATA& module, const char * const pattern); + bool Scan(MODULE_DATA& module, const char * const pattern, std::vector& foundAddresses); private: bool checkPattern(MODULE_DATA& module, const char * const pattern, std::string& result); - bool doScan(std::string& pattern, UINT8 *buf, SIZE_T size, std::vector& foundOffsets); + bool doScan(std::string& pattern, UINT8 *buf, SIZE_T size, std::vector& foundAddresses); SymbolResolver& m_symbolResolver; -- cgit v1.2.3