X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=fs%2Fbinfmt_som.c;h=fdc36bfd6a7beb8d1b63b91520ece0a7d2a347b7;hb=ddb2c43594f22843e9f3153da151deaba1a834c5;hp=9208c41209f9a1b21c93ee74f7981346740fa844;hpb=4c5cdb1e1f2a502069f57a60b5c6b97b8106c73c;p=linux-kernel-docs%2Flinux-2.6.git diff --git a/fs/binfmt_som.c b/fs/binfmt_som.c index 9208c41209..fdc36bfd6a 100644 --- a/fs/binfmt_som.c +++ b/fs/binfmt_som.c @@ -29,7 +29,6 @@ #include #include -#include #include #include @@ -195,7 +194,6 @@ load_som_binary(struct linux_binprm * bprm, struct pt_regs * regs) unsigned long som_entry; struct som_hdr *som_ex; struct som_exec_auxhdr *hpuxhdr; - struct files_struct *files; /* Get the exec-header */ som_ex = (struct som_hdr *) bprm->buf; @@ -222,15 +220,6 @@ load_som_binary(struct linux_binprm * bprm, struct pt_regs * regs) goto out_free; } - files = current->files; /* Refcounted so ok */ - retval = unshare_files(); - if (retval < 0) - goto out_free; - if (files == current->files) { - put_files_struct(files); - files = NULL; - } - retval = get_unused_fd(); if (retval < 0) goto out_free;