mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
Fix crash introduced by bug 180309: recheck array length each time through the loop, since it can change. b=282453 Patch by Lorenzo Colitti <lorenzo@colitti.com>. r+sr=bzbarsky,dbaron a=mkaply
This commit is contained in:
parent
2f81371971
commit
44cb23e339
@ -944,8 +944,7 @@ nsFontMetricsXft::FindFont(PRUint32 aChar)
|
||||
}
|
||||
|
||||
// Now check the remaining fonts
|
||||
|
||||
for (PRInt32 end = mLoadedFonts.Count(); i < end; ++i) {
|
||||
for (; i < mLoadedFonts.Count(); ++i) {
|
||||
nsFontXft *font = (nsFontXft *)mLoadedFonts.ElementAt(i);
|
||||
if (font->HasChar(aChar)) {
|
||||
if (font->GetXftFont())
|
||||
|
Loading…
x
Reference in New Issue
Block a user