]> git.sesse.net Git - vlc/commitdiff
playlist.c: change FindPrefix to include access on returned string
authorIlkka Ollakka <ileoo@videolan.org>
Mon, 12 Oct 2009 13:39:19 +0000 (16:39 +0300)
committerIlkka Ollakka <ileoo@videolan.org>
Tue, 13 Oct 2009 08:45:02 +0000 (11:45 +0300)
modules/demux/playlist/playlist.c

index 6799451a7c2c31c8b88d42683b742ec62841258a..7721a07258e06acfb14f6d7a53715d08863b9903 100644 (file)
@@ -182,7 +182,17 @@ char *FindPrefix( demux_t *p_demux )
 {
     char *psz_file;
     char *psz_prefix;
-    const char *psz_path = p_demux->psz_path;
+    char *psz_path;
+    if( p_demux->psz_access )
+    {
+        if( asprintf( &psz_path,"%s://%s", p_demux->psz_access, p_demux->psz_path ) == -1 )
+            return NULL;
+    }
+    else
+    {
+        if( asprintf( &psz_path,"%s", p_demux->psz_path ) == -1 )
+            return NULL;
+    }
 
 #ifdef WIN32
     psz_file = strrchr( psz_path, '\\' );
@@ -194,6 +204,7 @@ char *FindPrefix( demux_t *p_demux )
         psz_prefix = strndup( psz_path, psz_file - psz_path + 1 );
     else
         psz_prefix = strdup( "" );
+    free( psz_path );
 
     return psz_prefix;
 }