Commit 549fe69e authored by Markus Elfring's avatar Markus Elfring Committed by Paul Moore
Browse files

selinux: Return directly after a failed kzalloc() in type_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 4bd9f07b
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1469,10 +1469,9 @@ static int type_read(struct policydb *p, struct hashtab *h, void *fp)
	__le32 buf[4];
	u32 len;

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

	if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
		to_read = 4;