Commit 67e97758 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

http: simplify using access_t.psz_url

parent b10beb9c
...@@ -216,15 +216,8 @@ static vlc_http_cookie_jar_t *GetCookieJar( vlc_object_t *p_this ); ...@@ -216,15 +216,8 @@ static vlc_http_cookie_jar_t *GetCookieJar( vlc_object_t *p_this );
static int Open( vlc_object_t *p_this ) static int Open( vlc_object_t *p_this )
{ {
access_t *p_access = (access_t*)p_this; access_t *p_access = (access_t*)p_this;
char *psz_url;
if( asprintf( &psz_url, "%s://%s", p_access->psz_access, return OpenRedirected( p_this, p_access->psz_url, 5 );
p_access->psz_location ) == -1 )
return VLC_ENOMEM;
int ret = OpenRedirected( p_this, psz_url, 5 );
free( psz_url );
return ret;
} }
/** /**
......
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