mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2025-12-15 15:21:03 -08:00
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:
commit
6ff3b2b86b
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue