bug 717175 - clear word cache earlier when expiring fonts. r=jdaggett

This commit is contained in:
Jonathan Kew 2012-02-20 08:54:58 +00:00
Родитель ffeeedb0b6
Коммит 254cc12f43
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -1117,6 +1117,7 @@ gfxFontCache::NotifyReleased(gfxFont *aFont)
void void
gfxFontCache::NotifyExpired(gfxFont *aFont) gfxFontCache::NotifyExpired(gfxFont *aFont)
{ {
aFont->ClearCachedWords();
RemoveObject(aFont); RemoveObject(aFont);
DestroyFont(aFont); DestroyFont(aFont);
} }