1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-31 18:39:10 +00:00

(svn r9518) -Fix [Windows]: do not free an uninitialized pointer.

This commit is contained in:
rubidium
2007-03-28 09:27:38 +00:00
parent c738cdc0f0
commit 5d3c610ab5

View File

@@ -146,10 +146,10 @@ static FT_Error GetFontByFaceName(const char *font_name, FT_Face *face)
} while ((FT_Long)++index != (*face)->num_faces);
folder_error:
#if defined(UNICODE)
free(font_path);
#endif
folder_error:
registry_no_font_found:
RegCloseKey(hKey);
return err;