Fix uninitialized variable

svn path=/trunk/; revision=19115
This commit is contained in:
Hervé Poussineau 2005-11-10 08:47:43 +00:00
parent 50b07becb6
commit 545848ca1c

View file

@ -933,10 +933,11 @@ SetupIsActive(VOID)
if (rc != ERROR_SUCCESS)
goto cleanup;
size = sizeof(DWORD);
rc = RegQueryValueExW(hKey, L"SystemSetupInProgress", NULL, &regType, (LPBYTE)&active, &size);
if (rc != ERROR_SUCCESS)
goto cleanup;
if (regType != REG_DWORD)
if (regType != REG_DWORD || size != sizeof(DWORD))
goto cleanup;
ret = (active != 0);