mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[NTOSKRNL]
- Set the Status variable to STATUS_SUCCESS in PIP_RETURN_DATA - Fixes testbot svn path=/trunk/; revision=47391
This commit is contained in:
@@ -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;}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user