diff options
Diffstat (limited to 'security/security.c')
| -rw-r--r-- | security/security.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/security/security.c b/security/security.c index f1b8d2587639..55bc49027ba9 100644 --- a/security/security.c +++ b/security/security.c | |||
| @@ -1027,6 +1027,13 @@ int security_cred_alloc_blank(struct cred *cred, gfp_t gfp) | |||
| 1027 | 1027 | ||
| 1028 | void security_cred_free(struct cred *cred) | 1028 | void security_cred_free(struct cred *cred) |
| 1029 | { | 1029 | { |
| 1030 | /* | ||
| 1031 | * There is a failure case in prepare_creds() that | ||
| 1032 | * may result in a call here with ->security being NULL. | ||
| 1033 | */ | ||
| 1034 | if (unlikely(cred->security == NULL)) | ||
| 1035 | return; | ||
| 1036 | |||
| 1030 | call_void_hook(cred_free, cred); | 1037 | call_void_hook(cred_free, cred); |
| 1031 | } | 1038 | } |
| 1032 | 1039 | ||
