Skip to content

Commit

Permalink
analyze-security: do not assign badness to filtered-out syscalls
Browse files Browse the repository at this point in the history
Fixes #16451, https://bugzilla.redhat.com/show_bug.cgi?id=1856273.

(cherry picked from commit 01ecb36)

Resolves: #2196807
  • Loading branch information
keszybz authored and dtardon committed Jun 29, 2023
1 parent f0fb6ff commit 9e65968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analyze/analyze-security.c
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ static int assess_system_call_filter(
b = 10;
} else {
(void) asprintf(&d, "System call blacklist defined for service, and %s is included", f->name);
b = 5;
b = 0;
}
}
}
Expand Down

0 comments on commit 9e65968

Please sign in to comment.