mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
fix retain/release error
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@39035 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ad05ac2351
commit
f6925ca1c9
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2015-10-06 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSSocketPortNameServer.m: Fix retain/release error causing
|
||||
crash on failure to launch gdomap.
|
||||
|
||||
2015-10-05 Niels Grewe <niels.grewe@halbordnung.de>
|
||||
|
||||
* Headers/GNUstepBase/GNUstep.h: Define __has_extension() if the
|
||||
|
|
|
@ -191,7 +191,7 @@ typedef enum {
|
|||
[self close];
|
||||
if (launchCmd == nil)
|
||||
{
|
||||
launchCmd = [NSTask launchPathForTool: @"gdomap"];
|
||||
launchCmd = RETAIN([NSTask launchPathForTool: @"gdomap"]);
|
||||
}
|
||||
if (state == GSPC_LOPEN && launchCmd != nil)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue