Fix dealloc problem

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2892 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 1998-08-01 21:30:06 +00:00
parent 18412bd701
commit ad3a6150bc

View file

@ -80,8 +80,11 @@
- (void) dealloc
{
NSFreeHashTable (_contents_hash);
_contents_hash = 0;
if (_contents_hash)
{
NSFreeHashTable (_contents_hash);
_contents_hash = 0;
}
[super dealloc];
}