Skip to content

Commit

Permalink
[FEATURE] In ThreadScanReport: don't print stats if module was discarded
Browse files Browse the repository at this point in the history
  • Loading branch information
hasherezade committed Feb 5, 2025
1 parent 9d2e770 commit 344d85d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scanners/thread_scanner.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ namespace pesieve {
}
outs << "\"" << std::hex << susp_addr << "\"";
}
if (susp_addr) {
if (this->module) {
outs << ",\n";
OUT_PADDED(outs, level, "\"protection\" : ");
outs << "\"" << std::hex << protection << "\"";
Expand Down

0 comments on commit 344d85d

Please sign in to comment.