don't stack-allocate specialized vectors on non-conservtive control stacks
[sbcl.git] / src / runtime / run-program.c
index 7377e7f..4e6f829 100644 (file)
@@ -140,7 +140,9 @@ int spawn(char *program, char *argv[], int sin, int sout, int serr,
             }
             if (child_errno) {
                 waitpid(pid, NULL, 0);
-                pid = 0;
+                /* Our convention to tell Lisp that it was the exec that
+                 * failed, not the fork. */
+                pid = -2;
                 errno = child_errno;
             }
         }