diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2009-03-29 16:34:56 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2009-03-31 23:00:28 -0400 |
commit | d9e66c7296f3a39f6ac847f11ada8ddf10a4f8b1 (patch) | |
tree | 99c4ff2a8a2ea9daaec22b37ad5deddf14a95c6a /fs/binfmt_som.c | |
parent | d0f35dde6e748fa1a3f5d8e23a200ad1d5a4a749 (diff) | |
download | op-kernel-dev-d9e66c7296f3a39f6ac847f11ada8ddf10a4f8b1.zip op-kernel-dev-d9e66c7296f3a39f6ac847f11ada8ddf10a4f8b1.tar.gz |
Don't crap into descriptor table in binfmt_som
Same story as in binfmt_elf, except that in binfmt_som we
actually forget to close the sucker.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/binfmt_som.c')
-rw-r--r-- | fs/binfmt_som.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/fs/binfmt_som.c b/fs/binfmt_som.c index 08644a6..eff74b9 100644 --- a/fs/binfmt_som.c +++ b/fs/binfmt_som.c @@ -188,7 +188,6 @@ out: static int load_som_binary(struct linux_binprm * bprm, struct pt_regs * regs) { - int som_exec_fileno; int retval; unsigned int size; unsigned long som_entry; @@ -220,12 +219,6 @@ load_som_binary(struct linux_binprm * bprm, struct pt_regs * regs) goto out_free; } - retval = get_unused_fd(); - if (retval < 0) - goto out_free; - get_file(bprm->file); - fd_install(som_exec_fileno = retval, bprm->file); - /* Flush all traces of the currently running executable */ retval = flush_old_exec(bprm); if (retval) |