[vlc-commits] ram: Removing write only variable.
Hugo Beauzée-Luyssen
git at videolan.org
Mon Apr 16 10:43:05 CEST 2012
vlc | branch: master | Hugo Beauzée-Luyssen <beauze.h at gmail.com> | Sat Apr 14 11:35:27 2012 +0200| [4810256b271d0b4ac5a2e45a2746dfa30e889643] | committer: Hugo Beauzée-Luyssen
ram: Removing write only variable.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4810256b271d0b4ac5a2e45a2746dfa30e889643
---
modules/demux/playlist/ram.c | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/modules/demux/playlist/ram.c b/modules/demux/playlist/ram.c
index b543a67..fcc303d 100644
--- a/modules/demux/playlist/ram.c
+++ b/modules/demux/playlist/ram.c
@@ -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;
More information about the vlc-commits
mailing list