Commit 81bfc63e authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

gvp: remove write-only variable

parent 2a342fde
...@@ -123,7 +123,6 @@ static int Demux( demux_t *p_demux ) ...@@ -123,7 +123,6 @@ static int Demux( demux_t *p_demux )
char *psz_version = NULL; char *psz_version = NULL;
char *psz_url = NULL; char *psz_url = NULL;
char *psz_docid = NULL; char *psz_docid = NULL;
int i_duration = -1;
char *psz_title = NULL; char *psz_title = NULL;
char *psz_description = NULL; char *psz_description = NULL;
input_item_t *p_input; input_item_t *p_input;
...@@ -164,9 +163,7 @@ static int Demux( demux_t *p_demux ) ...@@ -164,9 +163,7 @@ static int Demux( demux_t *p_demux )
psz_docid = strdup( psz_attrvalue ); psz_docid = strdup( psz_attrvalue );
} }
else if( !strcmp( psz_line, "duration" ) ) else if( !strcmp( psz_line, "duration" ) )
{ /*atoi( psz_attrvalue )*/;
i_duration = atoi( psz_attrvalue );
}
else if( !strcmp( psz_line, "title" ) ) else if( !strcmp( psz_line, "title" ) )
{ {
psz_title = strdup( psz_attrvalue ); psz_title = strdup( psz_attrvalue );
......
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