Commit 4810256b authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen

ram: Removing write only variable.

parent 0a3e0334
...@@ -214,7 +214,6 @@ static int Demux( demux_t *p_demux ) ...@@ -214,7 +214,6 @@ static int Demux( demux_t *p_demux )
char *psz_line; char *psz_line;
char *psz_artist = NULL, *psz_album = NULL, *psz_genre = NULL, *psz_year = NULL; 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; 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; mtime_t i_duration = -1;
const char **ppsz_options = NULL; const char **ppsz_options = NULL;
int i_options = 0, i_start = 0, i_stop = 0; int i_options = 0, i_start = 0, i_stop = 0;
...@@ -372,7 +371,6 @@ static int Demux( demux_t *p_demux ) ...@@ -372,7 +371,6 @@ static int Demux( demux_t *p_demux )
FREENULL( psz_cdnum ); FREENULL( psz_cdnum );
FREENULL( psz_comments ); FREENULL( psz_comments );
i_options = 0; i_options = 0;
i_parsed_duration = 0;
i_duration = -1; i_duration = -1;
i_start = 0; i_start = 0;
i_stop = 0; i_stop = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment