aboutsummaryrefslogtreecommitdiffstats
path: root/security/security.c
diff options
context:
space:
mode:
Diffstat (limited to 'security/security.c')
-rw-r--r--security/security.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/security/security.c b/security/security.c
index c2de2f134854..4927e7cc7d96 100644
--- a/security/security.c
+++ b/security/security.c
@@ -1058,7 +1058,12 @@ EXPORT_SYMBOL_GPL(security_kernel_post_read_file);
1058 1058
1059int security_kernel_load_data(enum kernel_load_data_id id) 1059int security_kernel_load_data(enum kernel_load_data_id id)
1060{ 1060{
1061 return call_int_hook(kernel_load_data, 0, id); 1061 int ret;
1062
1063 ret = call_int_hook(kernel_load_data, 0, id);
1064 if (ret)
1065 return ret;
1066 return ima_load_data(id);
1062} 1067}
1063 1068
1064int security_task_fix_setuid(struct cred *new, const struct cred *old, 1069int security_task_fix_setuid(struct cred *new, const struct cred *old,