mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[NTOSKRNL]
- Fix a typo that broke handling of DevicePropertyEnumeratorName inside IoGetDeviceProperty svn path=/trunk/; revision=48583
This commit is contained in:
parent
9280f1e1c3
commit
7f865763fa
1 changed files with 2 additions and 2 deletions
|
@ -3327,8 +3327,8 @@ IoGetDeviceProperty(IN PDEVICE_OBJECT DeviceObject,
|
|||
ASSERT(EnumeratorNameEnd);
|
||||
|
||||
/* This is the format of the returned data */
|
||||
PIP_RETURN_DATA((EnumeratorNameEnd - DeviceInstanceName) * 2,
|
||||
&DeviceNode->ChildBusNumber);
|
||||
PIP_RETURN_DATA((EnumeratorNameEnd - DeviceInstanceName) * sizeof(WCHAR),
|
||||
DeviceInstanceName);
|
||||
|
||||
case DevicePropertyAddress:
|
||||
|
||||
|
|
Loading…
Reference in a new issue