Merge branch 'partial-fix-for-600' into 'develop'

si_spawn_subprocess: _exit instead of abort if exec fails

See merge request embeddable-common-lisp/ecl!232
This commit is contained in:
Marius Gerbershagen 2020-11-15 15:10:19 +00:00
commit 6ff3b2b86b

View file

@ -529,7 +529,7 @@ si_spawn_subprocess(cl_object command, cl_object argv, cl_object environ,
}
/* at this point exec has failed */
perror("exec");
abort();
_exit(EXIT_FAILURE);
}
close(child_stdin);
close(child_stdout);