mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
Avoid duplicate '=C:' entries in the child process environment.
This commit is contained in:
parent
d26f658acb
commit
3ada284495
@ -1067,6 +1067,8 @@ static char **build_envp( const WCHAR *envW, const WCHAR *extra_envW )
|
||||
/* now put the Windows environment strings */
|
||||
for (p = env; *p; p += strlen(p) + 1)
|
||||
{
|
||||
if (extra_env && p[0]=='=' && 'A'<=p[1] && p[1]<='Z' && p[2]==':' && p[3]=='=')
|
||||
continue; /* skipped */
|
||||
if (!memcmp( p, "PATH=", 5 )) /* store PATH as WINEPATH */
|
||||
*envptr++ = alloc_env_string( "WINEPATH=", p + 5 );
|
||||
else if (memcmp( p, "HOME=", 5 ) &&
|
||||
|
Loading…
Reference in New Issue
Block a user