diff options
Diffstat (limited to 'fs/file.c')
-rw-r--r-- | fs/file.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -281,10 +281,8 @@ static struct fdtable *alloc_fdtable(int nr) | |||
281 | out2: | 281 | out2: |
282 | nfds = fdt->max_fdset; | 282 | nfds = fdt->max_fdset; |
283 | out: | 283 | out: |
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 | } |