Commit 5f1a7058 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

stream_FilterNew: fix missing psz_url

parent 284038fb
......@@ -48,7 +48,7 @@ stream_t *stream_FilterNew( stream_t *p_source,
s->p_input = p_source->p_input;
if( s->psz_url != NULL )
if( p_source->psz_url != NULL )
{
s->psz_url = strdup( p_source->psz_url );
if( unlikely(s->psz_url == 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