diff options
author | Philippe De Swert <philippedeswert@gmail.com> | 2014-09-12 16:49:48 +0300 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-10-26 18:23:44 -0400 |
commit | a630a10d74f1f28dc8668876dadf526db36b9fe3 (patch) | |
tree | 8ff0d88e17aff22fb04d99a247488738cd4e2d81 | |
parent | a4a7569ab7e4e7b4939e74a7fc03ee913511ee15 (diff) |
core: smack-setup: Actually allow for succesfully loading CIPSO policy
The line under the last switch statement *loaded_policy = true;
would never be executed. As all switch cases return 0. Thus the
policy would never be marked as loaded.
Found with Coverity. Fixes: CID#1237785
(cherry picked from commit b9289d4c6e13ec5fb67bfce69c826d93b004da6a)
-rw-r--r-- | src/core/smack-setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/smack-setup.c b/src/core/smack-setup.c index 8838d31a8..c2acba75c 100644 --- a/src/core/smack-setup.c +++ b/src/core/smack-setup.c @@ -148,7 +148,7 @@ int smack_setup(void) { return 0; case 0: log_info("Successfully loaded Smack/CIPSO policies."); - return 0; + break; default: log_warning("Failed to load Smack/CIPSO access rules: %s, ignoring.", strerror(abs(r))); |