]> git.sesse.net Git - vlc/commitdiff
gvp: fix memory leak (p_sys allocated twice)
authorRémi Denis-Courmont <remi@remlab.net>
Mon, 17 Nov 2014 16:15:32 +0000 (18:15 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Mon, 17 Nov 2014 16:15:32 +0000 (18:15 +0200)
modules/demux/playlist/gvp.c

index 1b810de1cda449d87cff638e64047be9960a62b2..8f14d5ba3c82b6dcb4b764ce33c7b339b39c6918 100644 (file)
@@ -92,7 +92,7 @@ int Import_GVP( vlc_object_t *p_this )
 
     if( !b_found ) return VLC_EGENERIC;
 
-    STANDARD_DEMUX_INIT_MSG(  "using Google Video Playlist (gvp) import" );
+    msg_Dbg( p_this, "using Google Video Playlist (gvp) import" );
     p_demux->pf_control = Control;
     p_demux->pf_demux = Demux;
     p_demux->p_sys = malloc( sizeof( demux_sys_t ) );