projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
07563c7
)
[PATCH] alloc_fdtable() cleanup
author
Andrew Morton
<akpm@osdl.org>
Wed, 27 Sep 2006 08:51:02 +0000
(
01:51
-0700)
committer
Linus Torvalds
<torvalds@g5.osdl.org>
Wed, 27 Sep 2006 15:26:19 +0000
(08:26 -0700)
free_fdset(NULL, ...) is legal.
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
fs/file.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/file.c
b/fs/file.c
index b3c6b82e6a9d8629446e77268a83a2c5c4eb1b62..8d3bfca7714bf35e9e982caa761bb5c549909bc6 100644
(file)
--- a/
fs/file.c
+++ b/
fs/file.c
@@
-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;
}