[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1295548318.2089.11.camel@offworld>
Date: Thu, 20 Jan 2011 15:31:58 -0300
From: Davidlohr Bueso <dave@....org>
To: Stephen Smalley <sds@...ho.nsa.gov>,
James Morris <jmorris@...ei.org>,
Eric Paris <eparis@...isplace.org>
Cc: LKML <linux-kernel@...r.kernel.org>
Subject: [PATCH 1/3] selinux: return -ENOMEM when memory allocation fails
From: Davidlohr Bueso <dave@....org>
Signed-off-by: Davidlohr Bueso <dave@....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
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists