mirror of
https://github.com/reactos/reactos.git
synced 2025-04-29 10:39:07 +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);
|
Length = CM_RESOURCE_LIST_SIZE(DeviceNode->BootResources);
|
||||||
}
|
}
|
||||||
Data = &DeviceNode->BootResources;
|
Data = DeviceNode->BootResources;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
/* FIXME: use a translated boot configuration instead */
|
/* FIXME: use a translated boot configuration instead */
|
||||||
|
@ -3223,7 +3223,7 @@ IoGetDeviceProperty(IN PDEVICE_OBJECT DeviceObject,
|
||||||
{
|
{
|
||||||
Length = CM_RESOURCE_LIST_SIZE(DeviceNode->BootResources);
|
Length = CM_RESOURCE_LIST_SIZE(DeviceNode->BootResources);
|
||||||
}
|
}
|
||||||
Data = &DeviceNode->BootResources;
|
Data = DeviceNode->BootResources;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case DevicePropertyEnumeratorName:
|
case DevicePropertyEnumeratorName:
|
||||||
|
|
Loading…
Reference in a new issue