mirror of
https://github.com/reactos/reactos.git
synced 2026-06-01 00:40:26 +08:00
[SAC] Fix wrong sized variable in SAC driver
This commit is contained in:
committed by
Timo Kreuzer
parent
0d01b00871
commit
925f1a67ea
@@ -18,7 +18,7 @@ DriverEntry(IN PDRIVER_OBJECT DriverObject,
|
||||
IN PUNICODE_STRING RegistryPath)
|
||||
{
|
||||
HEADLESS_RSP_QUERY_INFO HeadlessInformation;
|
||||
ULONG InfoSize = sizeof(HeadlessInformation);
|
||||
SIZE_T InfoSize = sizeof(HeadlessInformation);
|
||||
NTSTATUS Status;
|
||||
UNICODE_STRING DriverName;
|
||||
PDEVICE_OBJECT DeviceObject;
|
||||
|
||||
Reference in New Issue
Block a user