dect
/
linux-2.6
Archived
13
0
Fork 0

KEYS: security_cred_alloc_blank() should return int under all circumstances

Make security_cred_alloc_blank() return int, not void, when CONFIG_SECURITY=n.

Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: James Morris <jmorris@namei.org>
This commit is contained in:
David Howells 2009-09-04 09:19:48 +01:00 committed by James Morris
parent 6c1488fd58
commit 945af7c328
1 changed files with 4 additions and 2 deletions

View File

@ -2309,8 +2309,10 @@ static inline int security_task_create(unsigned long clone_flags)
return 0;
}
static inline void security_cred_alloc_blank(struct cred *cred, gfp_t gfp)
{ }
static inline int security_cred_alloc_blank(struct cred *cred, gfp_t gfp)
{
return 0;
}
static inline void security_cred_free(struct cred *cred)
{ }