mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-11 16:50:42 +00:00
Fix leak (user info both copied and retained)
This commit is contained in:
parent
268fa1c57d
commit
6f0765cbb3
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ static NSMutableDictionary *__subscribers = nil;
|
|||
internal->_throughput = nil;
|
||||
internal->_totalUnitCount = 0;
|
||||
internal->_completedUnitCount = 0;
|
||||
internal->_userInfo = RETAIN([userInfo mutableCopy]);
|
||||
internal->_userInfo = [userInfo mutableCopy];
|
||||
internal->_cancelled = NO;
|
||||
internal->_cancellable = NO;
|
||||
internal->_paused = NO;
|
||||
|
|
Loading…
Reference in a new issue