зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
341a10bb1b
Коммит
a1e7521959
|
@ -71,8 +71,8 @@ void
|
||||||
DeleteFontData(WrFontKey aKey) {
|
DeleteFontData(WrFontKey aKey) {
|
||||||
auto i = sFontDataTable.find(aKey);
|
auto i = sFontDataTable.find(aKey);
|
||||||
if (i != sFontDataTable.end()) {
|
if (i != sFontDataTable.end()) {
|
||||||
sFontDataTable.erase(i);
|
|
||||||
wr_dec_ref_arc(i->second.mVec);
|
wr_dec_ref_arc(i->second.mVec);
|
||||||
|
sFontDataTable.erase(i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче