- In the token parsing function SmpParseToken, just return success directly if the input string has zero length, instead of running code which does nothing at the end, because the length was zero...
- Give a default value for the "BootExecute" entry in the SMSS registry configuration table (this value is used when there is no BootExecute registry value inside HKLM\System\CurrentControlSet\Control\Session Manager) and precise that it is a multi-string value.
- Remove a redundant "Environment" entry in this table, too.

svn path=/trunk/; revision=59518
This commit is contained in:
Hermès Bélusca-Maïto 2013-07-19 22:32:34 +00:00
parent 2b4917ab72
commit 3a79dade5f
2 changed files with 5 additions and 12 deletions

View file

@ -630,8 +630,8 @@ SmpRegistryConfigurationTable[] =
0,
L"BootExecute",
&SmpBootExecuteList,
REG_NONE,
NULL,
REG_MULTI_SZ,
L"autocheck AutoChk.exe *\0",
0
},
@ -725,16 +725,6 @@ SmpRegistryConfigurationTable[] =
0
},
{
SmpConfigureEnvironment,
RTL_QUERY_REGISTRY_SUBKEY,
L"Environment",
NULL,
REG_NONE,
NULL,
0
},
{
SmpConfigureSubSystems,
RTL_QUERY_REGISTRY_SUBKEY,

View file

@ -162,6 +162,9 @@ SmpParseToken(IN PUNICODE_STRING Input,
/* Save the input length */
InputLength = Input->Length;
/* If the input string is empty, just return */
if (InputLength == 0) return STATUS_SUCCESS;
/* Parse the buffer until the first character */
p = Input->Buffer;
Length = 0;