1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-18 03:59:09 +00:00

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

This commit is contained in:
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;
}