Bug 1412565. Release the vec before deleting the item. r=lsalzman

I think I caught and fixed this earlier but somehow lost the change.
Oh well.
This commit is contained in:
Jeff Muizelaar 2017-10-30 22:35:40 -04:00
Родитель 341a10bb1b
Коммит a1e7521959
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -71,8 +71,8 @@ void
DeleteFontData(WrFontKey aKey) {
auto i = sFontDataTable.find(aKey);
if (i != sFontDataTable.end()) {
sFontDataTable.erase(i);
wr_dec_ref_arc(i->second.mVec);
sFontDataTable.erase(i);
}
}
}