Merge pull request #698 from salling/master

Fixing race in SDWebImageDownloaderOperation leading to erroneous timeout.
This commit is contained in:
Olivier Poitrey 2014-04-22 18:35:30 +02:00
commit c9a24e294a
1 changed files with 1 additions and 0 deletions

View File

@ -129,6 +129,7 @@
}
- (void)cancelInternalAndStop {
if (self.isFinished) return;
[self cancelInternal];
CFRunLoopStop(CFRunLoopGetCurrent());
}