Close open files before calling builtin_exec(). I've tested this
authorEric Andersen <andersen@codepoet.org>
Tue, 6 Mar 2001 20:28:22 +0000 (20:28 -0000)
committerEric Andersen <andersen@codepoet.org>
Tue, 6 Mar 2001 20:28:22 +0000 (20:28 -0000)
and it fixes bug #1121.
 -Erik

lash.c
sh.c
shell/lash.c

diff --git a/lash.c b/lash.c
index 077cb11..57d969e 100644 (file)
--- a/lash.c
+++ b/lash.c
@@ -300,6 +300,7 @@ static int builtin_exec(struct child_prog *child)
        if (child->argv[1] == NULL)
                return EXIT_SUCCESS;   /* Really? */
        child->argv++;
+       close_all();
        pseudo_exec(child);
        /* never returns */
 }
diff --git a/sh.c b/sh.c
index 077cb11..57d969e 100644 (file)
--- a/sh.c
+++ b/sh.c
@@ -300,6 +300,7 @@ static int builtin_exec(struct child_prog *child)
        if (child->argv[1] == NULL)
                return EXIT_SUCCESS;   /* Really? */
        child->argv++;
+       close_all();
        pseudo_exec(child);
        /* never returns */
 }
index 077cb11..57d969e 100644 (file)
@@ -300,6 +300,7 @@ static int builtin_exec(struct child_prog *child)
        if (child->argv[1] == NULL)
                return EXIT_SUCCESS;   /* Really? */
        child->argv++;
+       close_all();
        pseudo_exec(child);
        /* never returns */
 }