Commit 200036ca9b3f0b2250912142552ce56682190f95
Committed by
James Morris
1 parent
9789cfe22e
Exists in
master
and in
39 other branches
CRED: fix sparse warnings
Impact: fix sparse warnings Fix the following sparse warnings: security/security.c:228:2: warning: returning void-valued expression security/security.c:233:2: warning: returning void-valued expression security/security.c:616:2: warning: returning void-valued expression Signed-off-by: Hannes Eder <hannes@hanneseder.net> Signed-off-by: James Morris <jmorris@namei.org>
Showing 1 changed file with 3 additions and 3 deletions Side-by-side Diff
security/security.c
... | ... | @@ -225,12 +225,12 @@ |
225 | 225 | |
226 | 226 | void security_bprm_committing_creds(struct linux_binprm *bprm) |
227 | 227 | { |
228 | - return security_ops->bprm_committing_creds(bprm); | |
228 | + security_ops->bprm_committing_creds(bprm); | |
229 | 229 | } |
230 | 230 | |
231 | 231 | void security_bprm_committed_creds(struct linux_binprm *bprm) |
232 | 232 | { |
233 | - return security_ops->bprm_committed_creds(bprm); | |
233 | + security_ops->bprm_committed_creds(bprm); | |
234 | 234 | } |
235 | 235 | |
236 | 236 | int security_bprm_secureexec(struct linux_binprm *bprm) |
... | ... | @@ -613,7 +613,7 @@ |
613 | 613 | |
614 | 614 | void security_commit_creds(struct cred *new, const struct cred *old) |
615 | 615 | { |
616 | - return security_ops->cred_commit(new, old); | |
616 | + security_ops->cred_commit(new, old); | |
617 | 617 | } |
618 | 618 | |
619 | 619 | int security_kernel_act_as(struct cred *new, u32 secid) |