Fix build bustage in satchel when --enable-storage is specified without --enable-places, b=324170, r=bryner

This commit is contained in:
darin%meer.net 2006-01-27 19:17:21 +00:00
Родитель bb11f0b846
Коммит 05b95bb3df
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -411,6 +411,7 @@ nsFormHistory::OpenDatabase()
getter_AddRefs(mDBInsertNameValue));
NS_ENSURE_SUCCESS(rv, rv);
#ifdef MOZ_MORKREADER
if (!exists) {
// Locate the old formhistory.dat file and import it.
nsCOMPtr<nsIFile> historyFile;
@ -424,6 +425,7 @@ nsFormHistory::OpenDatabase()
importer->ImportFormHistory(historyFile, this);
}
}
#endif
return NS_OK;
}