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:
Dmitry Gorbachev 2009-05-09 15:37:55 +00:00
parent 70cb734337
commit fc81096af5

View file

@ -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: