mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-02 04:41:05 +00:00
Minor error fixed.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@12529 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
46d40a1094
commit
baeb92d30d
2 changed files with 3 additions and 2 deletions
|
@ -10,6 +10,7 @@
|
|||
* Source/NSUserDefaults.m: Use GSDefaultsRootForUser()
|
||||
Fix a few bugs in setting up defaults database.
|
||||
Move defaults database to the Defaults subdirectory.
|
||||
* Source/Headers/GSIMpa.h: Fix error in last commit.
|
||||
|
||||
2002-02-13 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
|
|
|
@ -717,14 +717,14 @@ GSIMapCleanMap(GSIMapTable map)
|
|||
{
|
||||
GSI_MAP_RELEASE_KEY(map, node->key);
|
||||
#if GSI_MAP_HAS_VALUE
|
||||
GSI_MAP_RELEASE_VAL(map, node->val);
|
||||
GSI_MAP_RELEASE_VAL(map, node->value);
|
||||
#endif
|
||||
node->nextInBucket = 0;
|
||||
node = node->nextInMap;
|
||||
}
|
||||
GSI_MAP_RELEASE_KEY(map, node->key);
|
||||
#if GSI_MAP_HAS_VALUE
|
||||
GSI_MAP_RELEASE_VAL(map, node->val);
|
||||
GSI_MAP_RELEASE_VAL(map, node->value);
|
||||
#endif
|
||||
node->nextInBucket = 0;
|
||||
node->nextInMap = map->freeNodes;
|
||||
|
|
Loading…
Reference in a new issue