mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 08:30:21 +00:00
Patch by Jérôme Gardou (jgardou-at-yahoo-dot-fr) from bug #4388,
should fix the "VirtualBox Guest Additions 2.2.2 mouse filter driver is crashing during boot" (bug #4454). svn path=/trunk/; revision=40872
This commit is contained in:
parent
70cb734337
commit
fc81096af5
1 changed files with 2 additions and 2 deletions
|
@ -3213,7 +3213,7 @@ IoGetDeviceProperty(IN PDEVICE_OBJECT DeviceObject,
|
|||
{
|
||||
Length = CM_RESOURCE_LIST_SIZE(DeviceNode->BootResources);
|
||||
}
|
||||
Data = &DeviceNode->BootResources;
|
||||
Data = DeviceNode->BootResources;
|
||||
break;
|
||||
|
||||
/* FIXME: use a translated boot configuration instead */
|
||||
|
@ -3223,7 +3223,7 @@ IoGetDeviceProperty(IN PDEVICE_OBJECT DeviceObject,
|
|||
{
|
||||
Length = CM_RESOURCE_LIST_SIZE(DeviceNode->BootResources);
|
||||
}
|
||||
Data = &DeviceNode->BootResources;
|
||||
Data = DeviceNode->BootResources;
|
||||
break;
|
||||
|
||||
case DevicePropertyEnumeratorName:
|
||||
|
|
Loading…
Reference in a new issue