Bug 571160: fix unused variable warning. r=jdaggett

This commit is contained in:
Daniel Holbert 2010-06-10 11:26:46 -07:00
Родитель 7135a68967
Коммит 7e95b0dd5c
1 изменённых файлов: 0 добавлений и 1 удалений

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

@ -435,7 +435,6 @@ gfxFontUtils::ReadCMAPTableFormat14(PRUint8 *aBuf, PRUint32 aLength,
PRUint32 prevUnicode = 0;
for (PRUint32 j = 0; j < numUVSMappings; j++, tables += SizeOfNonDefUVSTable) {
const PRUint32 unicodeValue = ReadUint24At(tables, NonDefUVSOffsetUnicodeValue);
const PRUint16 glyphID = ReadShortAt(tables, NonDefUVSOffsetGlyphID);
NS_ENSURE_TRUE((prevUnicode < unicodeValue || j == 0) &&
unicodeValue <= CMAP_MAX_CODEPOINT,
NS_ERROR_GFX_CMAP_MALFORMED);