Commit 508d398c authored by Tristan Matthews's avatar Tristan Matthews

Freetype: fix valgrind warning

Fixes "Conditional jump or move depends on uninitialised value(s)"
in RenderCommon (freetype.c:1705)
parent f35551e5
......@@ -1882,6 +1882,7 @@ static int Create( vlc_object_t *p_this )
p_sys->p_face = 0;
p_sys->p_library = 0;
p_sys->style.i_font_size = 0;
p_sys->style.i_style_flags = 0;
/*
* The following variables should not be cached, as they might be changed on-the-fly:
......
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