Commit a9b60a5e authored by Pierre Ynard's avatar Pierre Ynard

freetype: simplify

parent 3556001c
...@@ -323,11 +323,10 @@ static int Create( vlc_object_t *p_this ) ...@@ -323,11 +323,10 @@ static int Create( vlc_object_t *p_this )
fontindex=0; fontindex=0;
if( !psz_fontfamily || !*psz_fontfamily ) if( !psz_fontfamily || !*psz_fontfamily )
{ {
free( psz_fontfamily );
#ifdef HAVE_FONTCONFIG #ifdef HAVE_FONTCONFIG
free( psz_fontfamily);
psz_fontfamily=strdup( DEFAULT_FONT ); psz_fontfamily=strdup( DEFAULT_FONT );
#else #else
free( psz_fontfamily );
psz_fontfamily = (char *)malloc( PATH_MAX + 1 ); psz_fontfamily = (char *)malloc( PATH_MAX + 1 );
if( !psz_fontfamily ) if( !psz_fontfamily )
goto error; goto error;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment