[PATCH] alloc_fdtable() cleanup
free_fdset(NULL, ...) is legal. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
07563c711f
commit
8b0e330b77
1 changed files with 2 additions and 4 deletions
|
@ -281,10 +281,8 @@ static struct fdtable *alloc_fdtable(int nr)
|
|||
out2:
|
||||
nfds = fdt->max_fdset;
|
||||
out:
|
||||
if (new_openset)
|
||||
free_fdset(new_openset, nfds);
|
||||
if (new_execset)
|
||||
free_fdset(new_execset, nfds);
|
||||
free_fdset(new_openset, nfds);
|
||||
free_fdset(new_execset, nfds);
|
||||
kfree(fdt);
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue