(svn r7249) -Fix (r7248): Missed a free()...

This commit is contained in:
peter1138 2006-11-24 18:37:40 +00:00
parent 6fabaeeb23
commit 8d175ccb13

View File

@ -372,6 +372,7 @@ void InitializeUnicodeGlyphMap(void)
for (i = 0; i < 256; i++) {
if (_unicode_glyph_map[size][i] != NULL) free(_unicode_glyph_map[size][i]);
}
free(_unicode_glyph_map[size]);
_unicode_glyph_map[size] = NULL;
}