Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
76355751
Commit
76355751
authored
Sep 01, 2005
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/control/http/http.c: Fixed PATH environment variable, and
under Win32 set SYSTEMROOT variable.
parent
6cff921a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
modules/control/http/http.c
modules/control/http/http.c
+12
-2
No files found.
modules/control/http/http.c
View file @
76355751
...
@@ -682,11 +682,21 @@ int E_(HandlerCallback)( httpd_handler_sys_t *p_args,
...
@@ -682,11 +682,21 @@ int E_(HandlerCallback)( httpd_handler_sys_t *p_args,
p
=
getenv
(
"PATH"
);
p
=
getenv
(
"PATH"
);
if
(
p
!=
NULL
)
if
(
p
!=
NULL
)
{
{
psz_tmp
=
malloc
(
sizeof
(
"
SERVER_
PATH="
)
+
strlen
(
p
)
);
psz_tmp
=
malloc
(
sizeof
(
"PATH="
)
+
strlen
(
p
)
);
sprintf
(
psz_tmp
,
"
SERVER_
PATH=%s"
,
p
);
sprintf
(
psz_tmp
,
"PATH=%s"
,
p
);
TAB_APPEND
(
i_env
,
ppsz_env
,
psz_tmp
);
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
)
if
(
psz_remote_addr
!=
NULL
&&
*
psz_remote_addr
)
{
{
psz_tmp
=
malloc
(
sizeof
(
"REMOTE_ADDR="
)
+
strlen
(
psz_remote_addr
)
);
psz_tmp
=
malloc
(
sizeof
(
"REMOTE_ADDR="
)
+
strlen
(
psz_remote_addr
)
);
...
...
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