Bug 640968 - Avoid using null cache if the singleton does not actually exist. r=blassey

This commit is contained in:
Josh Matthews 2011-03-24 19:37:07 -04:00
Родитель e59115d6f8
Коммит fe861bb901
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -183,7 +183,7 @@ public:
void Init()
{
if (!mMap.ops)
if (!mMap.ops || !mCache)
return;
nsCAutoString prefName("font.cache");
PRUint32 size;