mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 22:01:30 +00:00
Bug 1095281 - Open entries from a chosen appcache as read-only, r=michal
This commit is contained in:
parent
d2816c9755
commit
cadedaa85d
@ -69,6 +69,11 @@ NS_IMETHODIMP CacheStorage::AsyncOpenURI(nsIURI *aURI,
|
||||
if (LookupAppCache()) {
|
||||
rv = ChooseApplicationCache(noRefURI, getter_AddRefs(appCache));
|
||||
NS_ENSURE_SUCCESS(rv, rv);
|
||||
|
||||
if (appCache) {
|
||||
// From a chosen appcache open only as readonly
|
||||
aFlags &= ~nsICacheStorage::OPEN_TRUNCATE;
|
||||
}
|
||||
}
|
||||
|
||||
if (appCache) {
|
||||
|
Loading…
Reference in New Issue
Block a user