Fix retain/release error

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21825 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2005-10-15 04:34:30 +00:00
parent 99642a36db
commit 1d501ba2e9
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2005-10-15 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSPathUtilities.m: Fix retain/release error exposed by recent
changes.
2005-10-14 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSPathUtilities.m: Complete rewrite of config file parsing

View file

@ -431,8 +431,8 @@ static void InitialisePathUtilities(void)
TEST_ASSIGN(gnustepRcFileName, DEFAULT_STEPRC_FILE);
/* If the user has an rc file we need to source it */
gnustepUserRoot = setUserGNUstepPath(NSUserName(),
&gnustepDefaultsPath, &gnustepUserPath);
gnustepUserRoot = RETAIN(setUserGNUstepPath(NSUserName(),
&gnustepDefaultsPath, &gnustepUserPath));
/* Finally we check and report problems... */
if (gnustepSystemRoot == nil)