mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[SAC] Fix wrong sized variable in SAC driver
This commit is contained in:
parent
0d01b00871
commit
925f1a67ea
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue