From 50a2c6cb69c53bba5fbde2f726feee724db1e938 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Tue, 28 Apr 2009 11:39:54 +0000 Subject: [PATCH] - Fix writing of BootConfig to the registry (previously, it wrote contents of DEVICE_NODE structure and caused nonpaged pool overrea). Similar error a few lines below was fixed by hpoussin in r15691. svn path=/trunk/; revision=40717 --- reactos/ntoskrnl/io/pnpmgr/pnpmgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c b/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c index 9d2cbaa6194..a82ca630082 100644 --- a/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c +++ b/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c @@ -747,7 +747,7 @@ IopSetDeviceInstanceData(HANDLE InstanceKey, &KeyName, 0, REG_RESOURCE_LIST, - &DeviceNode->BootResources, + DeviceNode->BootResources, ListSize); } }