[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:
committed by
Linus Torvalds
parent
07563c711f
commit
8b0e330b77
@@ -281,10 +281,8 @@ 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);
|
free_fdset(new_execset, nfds);
|
||||||
if (new_execset)
|
|
||||||
free_fdset(new_execset, nfds);
|
|
||||||
kfree(fdt);
|
kfree(fdt);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user