mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 08:41:03 +00:00
Minor bugfix
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@4950 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
84702fabce
commit
4fa2ce8d78
2 changed files with 5 additions and 1 deletions
|
@ -633,7 +633,7 @@ extern char *objc_find_executable(const char *name);
|
|||
_taskId, result, strerror(errno));
|
||||
[self _terminatedChild: -1];
|
||||
}
|
||||
else if (result == _taskId || (result == 0 && errno == 0))
|
||||
else if (result == _taskId || (result > 0 && errno == 0))
|
||||
{
|
||||
if (WIFEXITED(_terminationStatus))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue