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

This commit is contained in:
peter1138
2006-11-24 18:37:40 +00:00
parent 667ce90ad3
commit 865b67c873

View File

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