mirror of
https://github.com/reactos/reactos.git
synced 2025-04-27 09:00:27 +00:00
[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:
parent
36cdd34814
commit
b29b2682bf
1 changed files with 1 additions and 1 deletions
|
@ -696,7 +696,7 @@ PNP_ReportLogOn(
|
|||
DWORD ProcessId)
|
||||
{
|
||||
DWORD ReturnValue = CR_FAILURE;
|
||||
HANDLE hProcess;
|
||||
HANDLE hProcess = NULL;
|
||||
|
||||
UNREFERENCED_PARAMETER(Admin);
|
||||
|
||||
|
|
Loading…
Reference in a new issue