[NTOSKRNL]
authorCameron Gutman <aicommander@gmail.com>
Sat, 29 May 2010 00:29:12 +0000 (00:29 +0000)
committerCameron Gutman <aicommander@gmail.com>
Sat, 29 May 2010 00:29:12 +0000 (00:29 +0000)
- Set the Status variable to STATUS_SUCCESS in PIP_RETURN_DATA
- Fixes testbot

svn path=/trunk/; revision=47391

reactos/ntoskrnl/io/pnpmgr/pnpmgr.c

index ec26493..9d130ec 100644 (file)
@@ -3234,7 +3234,7 @@ PiGetDeviceRegistryProperty(IN PDEVICE_OBJECT DeviceObject,
     return Status;
 }
 
-#define PIP_RETURN_DATA(x, y)   {ReturnLength = x; Data = y; break;}
+#define PIP_RETURN_DATA(x, y)   {ReturnLength = x; Data = y; Status = STATUS_SUCCESS; break;}
 #define PIP_REGISTRY_DATA(x, y) {ValueName = x; ValueType = y; break;}
 #define PIP_UNIMPLEMENTED()     {UNIMPLEMENTED; while(TRUE); break;}