Skip to content
Snippets Groups Projects
Commit b23975d9 authored by Lyndon Brown's avatar Lyndon Brown Committed by Jean-Baptiste Kempf
Browse files

freetype: fix invalid free

parent cf16bd05
No related branches found
No related tags found
Loading
Pipeline #174479 passed with stage
in 13 minutes and 48 seconds
......@@ -655,7 +655,10 @@ int Win32_GetFallbacks( vlc_font_select_t *fs, const char *psz_lcname,
goto done;
if( asprintf( &psz_linkname, "\xF0\x9F\x94\x97%s", psz_uniscribe ) < 0 )
{
psz_linkname = NULL;
goto done;
}
vlc_family_t *withlinked = NewFamily( fs, psz_linkname, NULL, NULL, NULL );
if( withlinked )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment