diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2008-04-26 15:36:31 (GMT) |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-26 15:36:31 (GMT) |
commit | 537166f6fa282c683663d6ac0c631b7456b5be95 (patch) | |
tree | 4d3f07fcc299245c742998c77d9fab6b46ef97f3 | |
parent | b1721d0da266b4af8cb4419473b4ca36206ab200 (diff) | |
download | linux-fsl-qoriq-537166f6fa282c683663d6ac0c631b7456b5be95.tar.xz |
fix execve()
Arrgghhh...
Sorry about that, I'd been sure I'd folded that one, but it actually got
lost. Please apply - that unbreaks execve().
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
-rw-r--r-- | kernel/fork.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/fork.c b/kernel/fork.c index efb618f..cb46bef 100644 --- a/kernel/fork.c +++ b/kernel/fork.c @@ -1787,7 +1787,7 @@ bad_unshare_out: int unshare_files(struct files_struct **displaced) { struct task_struct *task = current; - struct files_struct *copy; + struct files_struct *copy = NULL; int error; error = unshare_fd(CLONE_FILES, ©); |