Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ios
/
yh_sdwebimage
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Bogdan Poplauschi
2014-07-23 08:13:25 +0300
Commit
e95224bf5f54dd27a8bbcfdb464ee0001255dda8
1 parent
f96302b4
Temporary fix for #809, until we can figure out the cause of the crash
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
SDWebImage/SDWebImageManager.m
SDWebImage/SDWebImageManager.m
View file @
e95224b
...
...
@@ -317,7 +317,11 @@
}
if
(
self
.
cancelBlock
)
{
self
.
cancelBlock
();
self
.
cancelBlock
=
nil
;
// TODO: this is a temporary fix to #809.
// Until we can figure the exact cause of the crash, going with the ivar instead of the setter
// self.cancelBlock = nil;
_cancelBlock
=
nil
;
}
}
...
...
Please
register
or
login
to post a comment