mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +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
|
@ -1,3 +1,7 @@
|
|||
Tue Sep 28 5:54:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
* Source/NSTask.m: ([_collectChiled]) bugfix suggested by karl@nfox.com
|
||||
|
||||
Mon Sep 27 21:15:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
* Source/NSScanner.m: Fix error introduced into skipToNextField() macro
|
||||
|
|
|
@ -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…
Reference in a new issue