mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
revert stupid change
This commit is contained in:
parent
35a763f3cb
commit
10f86fed2d
2 changed files with 0 additions and 8 deletions
|
@ -1,9 +1,3 @@
|
|||
2022-01-24 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSException.m:
|
||||
Wrap bfd backtrace code in a lock, just in case something in there
|
||||
is not thread-safe.
|
||||
|
||||
2022-01-08 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* ChangeLog: Update for new release
|
||||
|
|
|
@ -1188,7 +1188,6 @@ GSPrivateReturnAddresses(NSUInteger **returns)
|
|||
|
||||
a = [[NSMutableArray alloc] initWithCapacity: count];
|
||||
|
||||
GS_MUTEX_LOCK(traceLock);
|
||||
for (i = 0; i < count; i++)
|
||||
{
|
||||
GSFunctionInfo *aFrame = nil;
|
||||
|
@ -1247,7 +1246,6 @@ GSPrivateReturnAddresses(NSUInteger **returns)
|
|||
[a addObject: [aFrame description]];
|
||||
}
|
||||
symbols = [a copy];
|
||||
GS_MUTEX_UNLOCK(traceLock);
|
||||
[a release];
|
||||
#elif defined(_WIN32)
|
||||
void **ptrs = (void**)&returns[FrameOffset];
|
||||
|
|
Loading…
Reference in a new issue