mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
- Fixed return status of IoGetDeviceProperty.
svn path=/trunk/; revision=8781
This commit is contained in:
parent
7cda28d415
commit
280a5aa361
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: pnpmgr.c,v 1.24 2004/03/14 17:10:48 navaraf Exp $
|
/* $Id: pnpmgr.c,v 1.25 2004/03/18 16:43:56 navaraf Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -165,7 +165,7 @@ IoGetDeviceProperty(
|
||||||
return STATUS_BUFFER_TOO_SMALL;
|
return STATUS_BUFFER_TOO_SMALL;
|
||||||
RtlCopyMemory(PropertyBuffer, Data, Length);
|
RtlCopyMemory(PropertyBuffer, Data, Length);
|
||||||
|
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
return STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue