[vlc-commits] es_out: fix title leak

Thomas Guillem git at videolan.org
Wed Oct 10 11:21:13 CEST 2018


vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Thu Oct  4 18:48:59 2018 +0200| [fab1f8d67569a08a4488b0261611ce62680a0dc8] | committer: Thomas Guillem

es_out: fix title leak

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=fab1f8d67569a08a4488b0261611ce62680a0dc8
---

 src/input/es_out.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/input/es_out.c b/src/input/es_out.c
index e07949e985..5b1089eedb 100644
--- a/src/input/es_out.c
+++ b/src/input/es_out.c
@@ -3233,6 +3233,7 @@ static int EsOutEsUpdateFmt(es_out_t *out, es_out_id_t *es,
     int ret = es_format_Copy(&es->fmt_out, &update);
     if (ret == VLC_SUCCESS)
     {
+        free( es->psz_title );
         free( es->psz_language );
         free( es->psz_language_code );
 



More information about the vlc-commits mailing list