aboutsummaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorEric Paris <eparis@redhat.com>2009-12-04 15:47:44 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2009-12-16 12:16:46 -0500
commitec29ea544b1ce204ba3575ba05fccf3069d00c3f (patch)
tree9b8073563183059e275730a8bb4f5b0c01800b6e /security
parente81e3f4dca6c54116a24aec217d2c15c6f58ada5 (diff)
ima: valid return code from ima_inode_alloc
ima_inode_alloc returns 0 and 1, but the LSM hooks expects an errno. Signed-off-by: Eric Paris <eparis@redhat.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'security')
-rw-r--r--security/integrity/ima/ima_iint.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/security/integrity/ima/ima_iint.c b/security/integrity/ima/ima_iint.c
index a4e2b1dac943..4a53f396d422 100644
--- a/security/integrity/ima/ima_iint.c
+++ b/security/integrity/ima/ima_iint.c
@@ -87,8 +87,6 @@ out:
87/** 87/**
88 * ima_inode_alloc - allocate an iint associated with an inode 88 * ima_inode_alloc - allocate an iint associated with an inode
89 * @inode: pointer to the inode 89 * @inode: pointer to the inode
90 *
91 * Return 0 on success, 1 on failure.
92 */ 90 */
93int ima_inode_alloc(struct inode *inode) 91int ima_inode_alloc(struct inode *inode)
94{ 92{
@@ -99,7 +97,7 @@ int ima_inode_alloc(struct inode *inode)
99 97
100 iint = ima_iint_insert(inode); 98 iint = ima_iint_insert(inode);
101 if (!iint) 99 if (!iint)
102 return 1; 100 return -ENOMEM;
103 return 0; 101 return 0;
104} 102}
105 103