Commit e910ff15 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

http Access: Avoid using an empty pointer (Oops).

parent 7b817766
...@@ -1081,7 +1081,7 @@ static int Request( access_t *p_access, int64_t i_tell ) ...@@ -1081,7 +1081,7 @@ static int Request( access_t *p_access, int64_t i_tell )
char * psz_new_loc; char * psz_new_loc;
/* Rework redirection that don't include server name */ /* Rework redirection that don't include server name */
if( !strncmp( psz_new_loc, "/", 1 ) ) if( !strncmp( p, "/", 1 ) )
{ {
asprintf(&psz_new_loc, "http://%s:%d%s", p_sys->url.psz_host, asprintf(&psz_new_loc, "http://%s:%d%s", p_sys->url.psz_host,
p_sys->url.i_port, p); p_sys->url.i_port, p);
......
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