Toggle navigation
Toggle navigation
This project
Loading...
Sign in
iOS
/
asi-http-request
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Jude Venn
2010-11-20 00:55:35 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
Ben Copsey
2010-11-20 20:10:58 +0800
Commit
ba98423774afa0925ec29ce43b2fa2e8b777ae20
ba984237
1 parent
aaba99f2
fix deadlock caused by not unlocking cache lock on 304
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
0 deletions
Classes/ASIDownloadCache.m
Classes/ASIDownloadCache.m
View file @
ba98423
...
...
@@ -273,6 +273,7 @@ static NSString *permanentCacheFolder = @"PermanentStore";
// New content is not different
if
([
request
responseStatusCode
]
==
304
)
{
[[
self
accessLock
]
unlock
];
return
YES
;
}
...
...
Please
register
or
login
to post a comment