Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
e910ff15
Commit
e910ff15
authored
Mar 28, 2007
by
Pierre d'Herbemont
Browse files
http Access: Avoid using an empty pointer (Oops).
parent
7b817766
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/access/http.c
View file @
e910ff15
...
...
@@ -1081,7 +1081,7 @@ static int Request( access_t *p_access, int64_t i_tell )
char
*
psz_new_loc
;
/* Rework redirection that don't include server name */
if
(
!
strncmp
(
p
sz_new_loc
,
"/"
,
1
)
)
if
(
!
strncmp
(
p
,
"/"
,
1
)
)
{
asprintf
(
&
psz_new_loc
,
"http://%s:%d%s"
,
p_sys
->
url
.
psz_host
,
p_sys
->
url
.
i_port
,
p
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment