vlc | branch: master | Rémi Duraffort <[email protected]> | Sun Mar 20 
10:40:10 2011 +0100| [882e06e061f6f662224f52055afee8e63be35f0f] | committer: 
Rémi Duraffort

Fix NULL pointer deref (fix #4599)

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

 modules/demux/playlist/podcast.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/demux/playlist/podcast.c b/modules/demux/playlist/podcast.c
index 5f6f01a..445d0c7 100644
--- a/modules/demux/playlist/podcast.c
+++ b/modules/demux/playlist/podcast.c
@@ -286,7 +286,7 @@ static int Demux( demux_t *p_demux )
                     vlc_gc_decref( p_input );
                     b_item = false;
                 }
-                else if( !strcmp( psz_elname, "image" ) )
+                else if( !strcmp( node, "image" ) )
                 {
                     b_image = false;
                 }

_______________________________________________
vlc-commits mailing list
[email protected]
http://mailman.videolan.org/listinfo/vlc-commits

Reply via email to