You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[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:
|
||||
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user