[not part of build] must call init on hashtable in nsDiskCacheDevice::Init().

This commit is contained in:
beard%netscape.com 2001-02-28 04:17:56 +00:00
Родитель b50591c434
Коммит b6d563d650
1 изменённых файлов: 5 добавлений и 0 удалений

5
netwerk/cache/src/nsDiskCacheDevice.cpp поставляемый
Просмотреть файл

@ -112,6 +112,11 @@ nsresult
nsDiskCacheDevice::Init()
{
nsresult rv = InstallPrefListeners(this);
if (NS_FAILED(rv)) return rv;
rv = mInactiveEntries.Init();
if (NS_FAILED(rv)) return rv;
return NS_OK;
}