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@17713 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
86080ad1f2
commit
5c13d64463
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-09-25 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSConnection.m: Fix obscure bug releasing in-progress
|
||||
request information on connection deallocation.
|
||||
|
||||
2003-09-23 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Source/Additions/Makefile.preamble: Add DLL build flag for cyginw
|
||||
|
|
|
@ -1728,9 +1728,9 @@ static BOOL multi_threaded = NO;
|
|||
|
||||
while (node != 0)
|
||||
{
|
||||
if (node->key.obj != dummyObject)
|
||||
if (node->value.obj != dummyObject)
|
||||
{
|
||||
RELEASE(node->key.obj);
|
||||
RELEASE(node->value.obj);
|
||||
}
|
||||
node = GSIMapEnumeratorNextNode(&enumerator);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue