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

Commit 8b0e330b authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds
Browse files

[PATCH] alloc_fdtable() cleanup



free_fdset(NULL, ...) is legal.

Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 07563c71
Loading
Loading
Loading
Loading
+2 −4
Original line number Original line Diff line number Diff line
@@ -281,9 +281,7 @@ static struct fdtable *alloc_fdtable(int nr)
out2:
out2:
	nfds = fdt->max_fdset;
	nfds = fdt->max_fdset;
out:
out:
  	if (new_openset)
	free_fdset(new_openset, nfds);
	free_fdset(new_openset, nfds);
  	if (new_execset)
	free_fdset(new_execset, nfds);
	free_fdset(new_execset, nfds);
	kfree(fdt);
	kfree(fdt);
	return NULL;
	return NULL;