Commit 2f72b64e authored by Hannes Domani's avatar Hannes Domani Committed by Rémi Denis-Courmont

access: archive: remove shadow variable

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent fc15c20e
...@@ -151,7 +151,7 @@ static input_item_t *Browse(stream_t *p_stream) ...@@ -151,7 +151,7 @@ static input_item_t *Browse(stream_t *p_stream)
if( i_ret == -1 ) if( i_ret == -1 )
return NULL; return NULL;
input_item_t *p_item = input_item_New(psz_uri, archive_entry_pathname(p_entry)); p_item = input_item_New(psz_uri, archive_entry_pathname(p_entry));
free( psz_uri ); free( psz_uri );
if(p_item == NULL) if(p_item == NULL)
return NULL; return NULL;
......
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