mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Mostly tidying
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@4465 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4d85cbdec2
commit
24f59ea2a0
46 changed files with 1406 additions and 1020 deletions
|
@ -1576,7 +1576,6 @@ NSCreateZone (size_t start, size_t gran, BOOL canFree)
|
|||
ffree_zone *zone;
|
||||
ff_block *block;
|
||||
ff_block *chunk;
|
||||
ff_block *header;
|
||||
ff_block *tailer;
|
||||
|
||||
zone = objc_malloc(sizeof(ffree_zone));
|
||||
|
@ -1704,10 +1703,10 @@ NSZoneRealloc (NSZone *zone, void *ptr, size_t size)
|
|||
inline void
|
||||
NSRecycleZone (NSZone *zone)
|
||||
{
|
||||
if (zone == 0)
|
||||
zone == NSDefaultMallocZone();
|
||||
if (zone == 0)
|
||||
zone = NSDefaultMallocZone();
|
||||
|
||||
(zone->recycle)(zone);
|
||||
(zone->recycle)(zone);
|
||||
}
|
||||
|
||||
inline void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue