This commit is contained in:
rfm 2025-01-09 06:06:12 +00:00
parent bf90656ab7
commit 05d34f1a30
2 changed files with 2 additions and 18 deletions

View file

@ -317,13 +317,6 @@ exitedThread(void *slot)
return self;
}
- (void) dealloc
{
RELEASE(_frame);
RELEASE(_extra);
DEALLOC
}
/* Initializer used when we get a callback. uses the data provided by
the callback. The cifframe was allocated by the forwarding function,
but we own it now so we can free it */

View file

@ -308,17 +308,8 @@ relinquishRetainedMemory(const void *item,
break;
case NSPointerFunctionsOpaquePersonality:
if (NSPointerFunctionsMachVirtualMemory == memoryType
|| NSPointerFunctionsMallocMemory == memoryType)
{
_x.acquireFunction = acquireMallocMemory;
_x.relinquishFunction = relinquishMallocMemory;
}
else
{
_x.acquireFunction = 0;
_x.relinquishFunction = 0;
}
_x.acquireFunction = 0;
_x.relinquishFunction = 0;
_x.descriptionFunction = describePointer;
_x.hashFunction = hashShifted;
_x.isEqualFunction = equalDirect;