Fix the flags passed to nsICacheSession::CreateSession; bug 110114. r=pavlov, sr=darin.

This commit is contained in:
sfraser%netscape.com 2001-11-20 20:15:19 +00:00
parent a0d29b2978
commit c1c797af19

View File

@ -330,8 +330,8 @@ nsSound::GetCacheSession(nsICacheSession** outCacheSession)
if (NS_FAILED(rv)) return rv;
return cacheService->CreateSession("sound",
nsICache::NOT_STREAM_BASED,
PR_FALSE, outCacheSession);
nsICache::STORE_IN_MEMORY,
nsICache::NOT_STREAM_BASED, outCacheSession);
}