OOps fix stupid error in last mod.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@10049 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2001-06-01 14:15:56 +00:00
parent 1803a6d352
commit d4d9022b03

View file

@ -417,7 +417,7 @@ NSZoneFromPointer(void *ptr)
NSZone *zone; NSZone *zone;
if (ptr == 0) return 0; if (ptr == 0) return 0;
if (zone_list == 0) return 0; if (zone_list == 0) return __nszone_private_hidden_default_zone;
/* /*
* See if we can find the zone in our list of all zones. * See if we can find the zone in our list of all zones.