vlc | branch: master | Hugo Beauzée-Luyssen <h...@beauzee.fr> | Tue Dec 15 
17:37:33 2020 +0100| [6ae50cc4c956469ebda5ea75cd6e48893889f23d] | committer: 
Hugo Beauzée-Luyssen

demux: ts: Fix potential use of uninitialized variable

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

 modules/demux/mpeg/ts.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/demux/mpeg/ts.c b/modules/demux/mpeg/ts.c
index 9c7c4625c6..b294d06d0e 100644
--- a/modules/demux/mpeg/ts.c
+++ b/modules/demux/mpeg/ts.c
@@ -450,7 +450,7 @@ static int Open( vlc_object_t *p_this )
     if( psz_string && *psz_string )
     {
         int i_res;
-        char* psz_csa2;
+        char* psz_csa2 = NULL;
 
         p_sys->csa = csa_New();
 

_______________________________________________
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits

Reply via email to