]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
selinux: Return directly after a failed kzalloc() in role_read()
authorMarkus Elfring <elfring@users.sourceforge.net>
Sat, 14 Jan 2017 21:20:25 +0000 (22:20 +0100)
committerPaul Moore <paul@paul-moore.com>
Wed, 29 Mar 2017 15:22:12 +0000 (11:22 -0400)
Return directly after a call of the function "kzalloc" failed
at the beginning.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Paul Moore <paul@paul-moore.com>
security/selinux/ss/policydb.c

index fd58de5a83adf61d2560a30cc74e788c605150b3..30f29c669e32035fb568e838358558ec6d16844d 100644 (file)
@@ -1412,10 +1412,9 @@ static int role_read(struct policydb *p, struct hashtab *h, void *fp)
        __le32 buf[3];
        u32 len;
 
-       rc = -ENOMEM;
        role = kzalloc(sizeof(*role), GFP_KERNEL);
        if (!role)
-               goto bad;
+               return -ENOMEM;
 
        if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
                to_read = 3;