mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 10:55:50 +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:
parent
848f77424e
commit
61325bb279
1 changed files with 1 additions and 1 deletions
|
@ -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;}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue