make sure inmutable

This commit is contained in:
Takeru Chuganji 2015-02-26 09:23:08 +09:00
parent 17c3cf3aa0
commit 62e2320f2d
1 changed files with 2 additions and 2 deletions

View File

@ -138,7 +138,7 @@ static NSString *const kCompletedCallbackKey = @"completed";
if (!sself) return;
__block NSArray *callbacksForURL;
dispatch_sync(sself.barrierQueue, ^{
callbacksForURL = sself.URLCallbacks[url];
callbacksForURL = [sself.URLCallbacks[url] copy];
});
for (NSDictionary *callbacks in callbacksForURL) {
SDWebImageDownloaderProgressBlock callback = callbacks[kProgressCallbackKey];
@ -150,7 +150,7 @@ static NSString *const kCompletedCallbackKey = @"completed";
if (!sself) return;
__block NSArray *callbacksForURL;
dispatch_barrier_sync(sself.barrierQueue, ^{
callbacksForURL = sself.URLCallbacks[url];
callbacksForURL = [sself.URLCallbacks[url] copy];
if (finished) {
[sself.URLCallbacks removeObjectForKey:url];
}