aboutsummaryrefslogtreecommitdiffstats
path: root/fs/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/file.c')
-rw-r--r--fs/file.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/file.c b/fs/file.c
index b3c6b82e6a9d..8d3bfca7714b 100644
--- a/fs/file.c
+++ b/fs/file.c
@@ -281,10 +281,8 @@ static struct fdtable *alloc_fdtable(int nr)
281out2: 281out2:
282 nfds = fdt->max_fdset; 282 nfds = fdt->max_fdset;
283out: 283out:
284 if (new_openset) 284 free_fdset(new_openset, nfds);
285 free_fdset(new_openset, nfds); 285 free_fdset(new_execset, nfds);
286 if (new_execset)
287 free_fdset(new_execset, nfds);
288 kfree(fdt); 286 kfree(fdt);
289 return NULL; 287 return NULL;
290} 288}