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

pull/155/head
rubidium 18 years ago
parent 0ce62afc78
commit 8b8f20c216

@ -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;

Loading…
Cancel
Save