Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7f6d0ad8 authored by Markus Elfring's avatar Markus Elfring Committed by Paul Moore
Browse files

selinux: Return directly after a failed kzalloc() in cat_read()



Return directly after a call of the function "kzalloc" failed
at the beginning.

Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarPaul Moore <paul@paul-moore.com>
parent 9c312e79
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1637,10 +1637,9 @@ static int cat_read(struct policydb *p, struct hashtab *h, void *fp)
	__le32 buf[3];
	u32 len;

	rc = -ENOMEM;
	catdatum = kzalloc(sizeof(*catdatum), GFP_ATOMIC);
	if (!catdatum)
		goto bad;
		return -ENOMEM;

	rc = next_entry(buf, fp, sizeof buf);
	if (rc)