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

Fix format string

This is most likely exploitable with malicious sub files.
parent 71849c06
...@@ -300,7 +300,6 @@ void ParseSSAHeader( decoder_t *p_dec ) ...@@ -300,7 +300,6 @@ void ParseSSAHeader( decoder_t *p_dec )
p_style->psz_stylename = strdup( psz_temp_stylename ); p_style->psz_stylename = strdup( psz_temp_stylename );
p_style->font_style.psz_fontname = strdup( psz_temp_fontname ); p_style->font_style.psz_fontname = strdup( psz_temp_fontname );
p_style->font_style.i_font_size = i_font_size; p_style->font_style.i_font_size = i_font_size;
msg_Dbg( p_dec, psz_temp_color1 );
ParseColor( psz_temp_color1, &p_style->font_style.i_font_color, ParseColor( psz_temp_color1, &p_style->font_style.i_font_color,
&p_style->font_style.i_font_alpha ); &p_style->font_style.i_font_alpha );
ParseColor( psz_temp_color3, &p_style->font_style.i_outline_color, ParseColor( psz_temp_color3, &p_style->font_style.i_outline_color,
......
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