mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 04:13:32 +00:00
Don't bail out for unparsable environment variables.
svn path=/trunk/; revision=19348
This commit is contained in:
@@ -1319,11 +1319,11 @@ ProcessInput (BOOL bFlag)
|
||||
{
|
||||
UINT envNameLen;
|
||||
LPCTSTR envVal = GetParsedEnvVar ( ip, &envNameLen, bModeSetA );
|
||||
if ( !envVal )
|
||||
return 1;
|
||||
ip += envNameLen;
|
||||
cp = _stpcpy ( cp, envVal );
|
||||
continue;
|
||||
if ( envVal )
|
||||
{
|
||||
ip += envNameLen;
|
||||
cp = _stpcpy ( cp, envVal );
|
||||
}
|
||||
}
|
||||
|
||||
if (_istcntrl (*ip))
|
||||
|
||||
Reference in New Issue
Block a user