[UMPNPMGR] Fix uninitialized variable (#5310)

The unhiding and guilty revision that was identified by @stasm by bisecting the
bootability of LiveCD was 0.4.15-dev-6050-g13e6cbc
As that was the symptom: "We could not longer boot livecd". CORE-18986
This commit is contained in:
Timo Kreuzer 2023-06-01 13:44:05 +03:00 committed by GitHub
parent 36cdd34814
commit b29b2682bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -696,7 +696,7 @@ PNP_ReportLogOn(
DWORD ProcessId)
{
DWORD ReturnValue = CR_FAILURE;
HANDLE hProcess;
HANDLE hProcess = NULL;
UNREFERENCED_PARAMETER(Admin);