Skip to content

Commit

Permalink
[BUGFIX] Fixed variable initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
hasherezade committed Dec 14, 2024
1 parent 26e2e1f commit 87240b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scanners/thread_scanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ bool should_scan_context(const util::thread_info& info)
bool pesieve::ThreadScanner::scanRemoteThreadCtx(HANDLE hThread, ThreadScanReport* my_report)
{
const DWORD tid = GetThreadId(hThread);
ctx_details cDetails = { 0 };
ctx_details cDetails;
const bool is_ok = fetchThreadCtxDetails(processHandle, hThread, cDetails);

if (!pesieve::is_thread_running(hThread)) {
Expand Down

0 comments on commit 87240b6

Please sign in to comment.