mirror of
https://github.com/reactos/reactos.git
synced 2025-04-27 09:00:27 +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)
|
IN PUNICODE_STRING RegistryPath)
|
||||||
{
|
{
|
||||||
HEADLESS_RSP_QUERY_INFO HeadlessInformation;
|
HEADLESS_RSP_QUERY_INFO HeadlessInformation;
|
||||||
ULONG InfoSize = sizeof(HeadlessInformation);
|
SIZE_T InfoSize = sizeof(HeadlessInformation);
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
UNICODE_STRING DriverName;
|
UNICODE_STRING DriverName;
|
||||||
PDEVICE_OBJECT DeviceObject;
|
PDEVICE_OBJECT DeviceObject;
|
||||||
|
|
Loading…
Reference in a new issue