Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
76355751
Commit
76355751
authored
Sep 01, 2005
by
Christophe Massiot
Browse files
* modules/control/http/http.c: Fixed PATH environment variable, and
under Win32 set SYSTEMROOT variable.
parent
6cff921a
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/control/http/http.c
View file @
76355751
...
...
@@ -682,11 +682,21 @@ int E_(HandlerCallback)( httpd_handler_sys_t *p_args,
p
=
getenv
(
"PATH"
);
if
(
p
!=
NULL
)
{
psz_tmp
=
malloc
(
sizeof
(
"
SERVER_
PATH="
)
+
strlen
(
p
)
);
sprintf
(
psz_tmp
,
"
SERVER_
PATH=%s"
,
p
);
psz_tmp
=
malloc
(
sizeof
(
"PATH="
)
+
strlen
(
p
)
);
sprintf
(
psz_tmp
,
"PATH=%s"
,
p
);
TAB_APPEND
(
i_env
,
ppsz_env
,
psz_tmp
);
}
#ifdef WIN32
p
=
getenv
(
"windir"
);
if
(
p
!=
NULL
)
{
psz_tmp
=
malloc
(
sizeof
(
"SYSTEMROOT="
)
+
strlen
(
p
)
);
sprintf
(
psz_tmp
,
"SYSTEMROOT=%s"
,
p
);
TAB_APPEND
(
i_env
,
ppsz_env
,
psz_tmp
);
}
#endif
if
(
psz_remote_addr
!=
NULL
&&
*
psz_remote_addr
)
{
psz_tmp
=
malloc
(
sizeof
(
"REMOTE_ADDR="
)
+
strlen
(
psz_remote_addr
)
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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