From 2e4e69d70f9149c3a2e2e8328bfaf6bd62528b1d Mon Sep 17 00:00:00 2001 From: richard Date: Mon, 26 Oct 1998 20:46:41 +0000 Subject: [PATCH] Bugfix - check for nil in init git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@3121 72102866-910b-0410-8b05-ffd578937521 --- Source/NSGDictionary.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/NSGDictionary.m b/Source/NSGDictionary.m index f8332302e..614c0c0b5 100644 --- a/Source/NSGDictionary.m +++ b/Source/NSGDictionary.m @@ -189,7 +189,7 @@ myEqual(NSObject *self, NSObject *other) int i; FastMapInitWithZoneAndCapacity(&map, fastZone(self), c); for (i = 0; i < c; i++) { - FastMapNode node = FastMapNodeForKey(&map, (FastMapItem)keys[i]); + FastMapNode node; if (keys[i] == nil) { [self autorelease];