mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
NSURLSession Reimplementation (#411)
* clang-format: Do not use tabs * Ignore clangd cache and compile_commands * NSBlockOperation: Fix memory leak * NSHTTPCookie: Fix expires date parsing * NSOperation: Remove all objects at end of execution * Reimplementation of NSURLSession * Update ChangeLog
This commit is contained in:
parent
9367c2d796
commit
07233534e6
50 changed files with 5370 additions and 7176 deletions
|
@ -593,13 +593,15 @@ static NSArray *empty = nil;
|
|||
|
||||
- (void) main
|
||||
{
|
||||
NSEnumerator *en = [[self executionBlocks] objectEnumerator];
|
||||
NSEnumerator *en = [_executionBlocks objectEnumerator];
|
||||
GSBlockOperationBlock theBlock;
|
||||
|
||||
while ((theBlock = (GSBlockOperationBlock)[en nextObject]) != NULL)
|
||||
{
|
||||
CALL_NON_NULL_BLOCK_NO_ARGS(theBlock);
|
||||
}
|
||||
|
||||
[_executionBlocks removeAllObjects];
|
||||
}
|
||||
@end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue