Commit f8ab474b authored by Boris Egorov's avatar Boris Egorov Committed by Jean-Baptiste Kempf

text_renderer: Fix syntax error

Signed-off-by: default avatarBoris Egorov <egorov@linux.com>
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 80cada9e
......@@ -260,7 +260,7 @@ static void Destroy(vlc_object_t *p_this)
filter_sys_t *p_sys = p_filter->p_sys;
#ifndef TARGET_OS_IPHONE
if (p_sys->p_fonts) {
for (int k = 0; k < p_sys->i_fonts; k++) {
for (int k = 0; k < p_sys->i_fonts; k++)
ATSFontDeactivate(p_sys->p_fonts[k], NULL, kATSOptionFlagsDefault);
free(p_sys->p_fonts);
......
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