mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
[USERENV] Initialize variable before using it
This commit is contained in:
parent
6a1c78b37b
commit
faa938e9dc
1 changed files with 1 additions and 1 deletions
|
@ -357,7 +357,7 @@ CheckForGuestsAndAdmins(
|
|||
PTOKEN_GROUPS pGroupInfo = NULL;
|
||||
PSID pAdministratorsSID = NULL;
|
||||
PSID pGuestsSID = NULL;
|
||||
DWORD i, dwSize;
|
||||
DWORD i, dwSize = 0;
|
||||
DWORD dwError = ERROR_SUCCESS;
|
||||
|
||||
DPRINT("CheckForGuestsAndAdmins(%p %p)\n", hToken, pdwState);
|
||||
|
|
Loading…
Reference in a new issue