Fix a memory leak in function gl_init_font in ps_libdbgfont.c

This commit is contained in:
Lioncash 2013-10-13 23:12:12 -04:00
parent c0d4f3275d
commit 64da817eec

View File

@ -54,6 +54,7 @@ static bool gl_init_font(void *data, const char *font_path, float font_size)
#endif
DbgFontInit(&cfg);
free(handle);
return true;
}