]> git.sesse.net Git - vlc/commitdiff
Don't leak memory
authorChristophe Mutricy <xtophe@videolan.org>
Sun, 18 Nov 2007 21:18:48 +0000 (21:18 +0000)
committerChristophe Mutricy <xtophe@videolan.org>
Sun, 18 Nov 2007 21:18:48 +0000 (21:18 +0000)
src/input/input.c

index c763e12a72c49809eb643a94dd971c6857419f51..0c7bb67ea95a182f549e47e8b5783ee4aa8b90f0 100644 (file)
@@ -2189,6 +2189,7 @@ static int InputSourceInit( input_thread_t *p_input,
         /* Try access_demux if no demux given */
         if( *psz_demux == '\0' )
         {
+                printf("********  psz_path = %s",  psz_path); 
             in->p_demux = demux2_New( p_input, psz_access, psz_demux, psz_path,
                                       NULL, p_input->p->p_es_out, VLC_FALSE );
         }
@@ -2258,7 +2259,8 @@ static int InputSourceInit( input_thread_t *p_input,
         {
             msg_Dbg( p_input, "retrying with access `' demux `' path `%s'",
                      psz_mrl );
-            psz_demux=strdup(""); 
+            psz_demux =  "" ; 
+            psz_path = psz_mrl;
             in->p_access = access2_New( p_input,
                                          "", "", psz_mrl,
                                          p_input->b_preparsing );
@@ -2344,6 +2346,7 @@ static int InputSourceInit( input_thread_t *p_input,
             if( in->p_access->psz_path )
             {
                 const char *psz_a, *psz_d;
+                
                 psz_buf = strdup( in->p_access->psz_path );
                 MRLSplit( VLC_OBJECT(p_input), psz_buf,
                           &psz_a, &psz_d, &psz_real_path );