Alexander Morozov : ntoskrnl.exe: Initialize StackSize field of DEVICE_OBJECT structure.
Module: wine Branch: master Commit: 1be805bee58b2c2c57c2a9b4f99583d4249c266c URL: http://source.winehq.org/git/wine.git/?a=commit;h=1be805bee58b2c2c57c2a9b4f9... Author: Alexander Morozov <amorozov(a)etersoft.ru> Date: Fri Oct 3 16:26:25 2008 +0400 ntoskrnl.exe: Initialize StackSize field of DEVICE_OBJECT structure. --- dlls/ntoskrnl.exe/ntoskrnl.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/dlls/ntoskrnl.exe/ntoskrnl.c b/dlls/ntoskrnl.exe/ntoskrnl.c index 123a558..1751233 100644 --- a/dlls/ntoskrnl.exe/ntoskrnl.c +++ b/dlls/ntoskrnl.exe/ntoskrnl.c @@ -379,6 +379,7 @@ NTSTATUS WINAPI IoCreateDevice( DRIVER_OBJECT *driver, ULONG ext_size, device->DriverObject = driver; device->DeviceExtension = device + 1; device->DeviceType = type; + device->StackSize = 1; device->Reserved = handle; device->NextDevice = driver->DeviceObject;
participants (1)
-
Alexandre Julliard