Commit b20b1a27 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

freetype: NULL for %s is not portable

parent 77271be3
...@@ -427,7 +427,8 @@ static int Create( vlc_object_t *p_this ) ...@@ -427,7 +427,8 @@ static int Create( vlc_object_t *p_this )
goto error; goto error;
} }
msg_Dbg( p_filter, "Using %s as font from file %s", psz_fontfamily, psz_fontfile ); msg_Dbg( p_filter, "Using %s as font from file %s", psz_fontfamily,
psz_fontfile ? psz_fontfile : "(null)" );
p_sys->psz_fontfamily = strdup( psz_fontfamily ); p_sys->psz_fontfamily = strdup( psz_fontfamily );
# ifdef WIN32 # ifdef WIN32
if( p_dialog ) if( p_dialog )
...@@ -458,12 +459,14 @@ static int Create( vlc_object_t *p_this ) ...@@ -458,12 +459,14 @@ static int Create( vlc_object_t *p_this )
if( i_error == FT_Err_Unknown_File_Format ) if( i_error == FT_Err_Unknown_File_Format )
{ {
msg_Err( p_filter, "file %s have unknown format", psz_fontfile ); msg_Err( p_filter, "file %s have unknown format",
psz_fontfile ? psz_fontfile : "(null)" );
goto error; goto error;
} }
else if( i_error ) else if( i_error )
{ {
msg_Err( p_filter, "failed to load font file %s", psz_fontfile ); msg_Err( p_filter, "failed to load font file %s",
psz_fontfile ? psz_fontfile : "(null)" );
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