[ros-diffs] [cgutman] 47391: [NTOSKRNL] - Set the Status variable to STATUS_SUCCESS in PIP_RETURN_DATA - Fixes testbot
cgutman at svn.reactos.org
cgutman at svn.reactos.org
Sat May 29 02:29:13 CEST 2010
Author: cgutman
Date: Sat May 29 02:29:12 2010
New Revision: 47391
URL: http://svn.reactos.org/svn/reactos?rev=47391&view=rev
Log:
[NTOSKRNL]
- Set the Status variable to STATUS_SUCCESS in PIP_RETURN_DATA
- Fixes testbot
Modified:
trunk/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c
Modified: trunk/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c?rev=47391&r1=47390&r2=47391&view=diff
==============================================================================
--- trunk/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c [iso-8859-1] Sat May 29 02:29:12 2010
@@ -3234,7 +3234,7 @@
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;}
More information about the Ros-diffs
mailing list