]> git.sesse.net Git - vlc/commitdiff
ram: Removing write only variable.
authorHugo Beauzée-Luyssen <beauze.h@gmail.com>
Sat, 14 Apr 2012 09:35:27 +0000 (11:35 +0200)
committerHugo Beauzée-Luyssen <beauze.h@gmail.com>
Mon, 16 Apr 2012 08:42:27 +0000 (10:42 +0200)
modules/demux/playlist/ram.c

index b543a67427843a38420c99b2f162c64cc2147743..fcc303da2b3a5f7d7dfd953d6396fb944d874c2f 100644 (file)
@@ -214,7 +214,6 @@ static int Demux( demux_t *p_demux )
     char       *psz_line;
     char       *psz_artist = NULL, *psz_album = NULL, *psz_genre = NULL, *psz_year = NULL;
     char       *psz_author = NULL, *psz_title = NULL, *psz_copyright = NULL, *psz_cdnum = NULL, *psz_comments = NULL;
-    int        i_parsed_duration = 0;
     mtime_t    i_duration = -1;
     const char **ppsz_options = NULL;
     int        i_options = 0, i_start = 0, i_stop = 0;
@@ -372,7 +371,6 @@ static int Demux( demux_t *p_demux )
             FREENULL( psz_cdnum );
             FREENULL( psz_comments );
             i_options = 0;
-            i_parsed_duration = 0;
             i_duration = -1;
             i_start = 0;
             i_stop = 0;