public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] selinux: return -ENOMEM when memory allocation fails
@ 2011-01-20 18:31 Davidlohr Bueso
  2011-01-21  0:07 ` James Morris
  0 siblings, 1 reply; 4+ messages in thread
From: Davidlohr Bueso @ 2011-01-20 18:31 UTC (permalink / raw)
  To: Stephen Smalley, James Morris, Eric Paris; +Cc: LKML

From: Davidlohr Bueso <dave@gnu.org>

Signed-off-by: Davidlohr Bueso <dave@gnu.org>
---
 security/selinux/ss/conditional.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/security/selinux/ss/conditional.c b/security/selinux/ss/conditional.c
index c3f845c..a533732 100644
--- a/security/selinux/ss/conditional.c
+++ b/security/selinux/ss/conditional.c
@@ -178,7 +178,7 @@ int cond_init_bool_indexes(struct policydb *p)
 	p->bool_val_to_struct = (struct cond_bool_datum **)
 		kmalloc(p->p_bools.nprim * sizeof(struct cond_bool_datum *), GFP_KERNEL);
 	if (!p->bool_val_to_struct)
-		return -1;
+		return -ENOMEM;
 	return 0;
 }
 
-- 
1.7.1






^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-01-24  0:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-20 18:31 [PATCH 1/3] selinux: return -ENOMEM when memory allocation fails Davidlohr Bueso
2011-01-21  0:07 ` James Morris
2011-01-21 15:28   ` Davidlohr Bueso
2011-01-24  0:41     ` James Morris

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox