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@21825 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
99642a36db
commit
1d501ba2e9
2 changed files with 7 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue