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

[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
...@@ -281,9 +281,7 @@ static struct fdtable *alloc_fdtable(int nr) ...@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment