[MKHIVE] Fix cases where 'rc' was used without being initialized.

Fixes crashes when the tool is compiled with Run-Time Checks enabled.
And thus should fix the MSVC buildbots!
Thanks to Pierre for having brought this issue to me.

CORE-15201
This commit is contained in:
Hermès Bélusca-Maïto 2018-10-18 23:07:41 +02:00
parent 473ca91166
commit e723b9f4b4
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -572,6 +572,7 @@ RegDeleteKeyW(
else
{
hTargetKey = hKey;
rc = ERROR_SUCCESS;
}
/* Don't allow deleting the root */
@ -618,6 +619,8 @@ RegDeleteKeyW(
/* Release the cell */
HvReleaseCell(Hive, ParentCell);
}
rc = ERROR_SUCCESS;
}
else
{