Bug 591046 - Unparenthesized macro breaks static checking builds. r=dwitte, a=bustage

This commit is contained in:
Ehren Metcalfe 2010-08-27 08:12:02 -07:00
parent 82e1944e0f
commit ca521c422c

View File

@ -1981,7 +1981,7 @@ nsHttpChannel::OpenCacheEntry()
// Set the desired cache access mode accordingly...
nsCacheAccessMode accessRequested;
rv = DetermineCacheAccess(&accessRequested);
if NS_FAILED(rv) return rv;
if (NS_FAILED(rv)) return rv;
if (!mApplicationCache && mInheritApplicationCache) {
// Pick up an application cache from the notification
@ -2166,7 +2166,7 @@ nsHttpChannel::OpenNormalCacheEntry(PRBool aIsSync)
nsCacheAccessMode accessRequested;
rv = DetermineCacheAccess(&accessRequested);
if NS_FAILED(rv) return rv;
if (NS_FAILED(rv)) return rv;
if (mLoadFlags & LOAD_BYPASS_LOCAL_CACHE_IF_BUSY) {
if (!aIsSync) {