зеркало из https://github.com/mozilla/gecko-dev.git
Bug 767406 - don't assume the tables are initialized in StartupCache::WriteToDisk; r=mwu
This commit is contained in:
Родитель
e1ab6c0002
Коммит
b0fc73509d
|
@ -414,7 +414,7 @@ StartupCache::WriteToDisk()
|
|||
nsresult rv;
|
||||
mStartupWriteInitiated = true;
|
||||
|
||||
if (mTable.Count() == 0)
|
||||
if (!mTable.IsInitialized() || mTable.Count() == 0)
|
||||
return;
|
||||
|
||||
nsCOMPtr<nsIZipWriter> zipW = do_CreateInstance("@mozilla.org/zipwriter;1");
|
||||
|
|
Загрузка…
Ссылка в новой задаче