mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
- Removed setting of STATUS_DATA_OVERRUN in IoStatusBlock.Status when
IoStatusBlock.Information is greater than the output buffer length passed in by the caller. svn path=/trunk/; revision=8725
This commit is contained in:
parent
9789932e02
commit
ff4f24bbb6
1 changed files with 0 additions and 1 deletions
|
@ -44,7 +44,6 @@ VOID IoDeviceControlCompletion(PDEVICE_OBJECT DeviceObject,
|
|||
OutputBufferLength = Irp->IoStatus.Information;
|
||||
if (IoStack->Parameters.DeviceIoControl.OutputBufferLength < OutputBufferLength)
|
||||
{
|
||||
Irp->IoStatus.Status = STATUS_DATA_OVERRUN;
|
||||
OutputBufferLength = IoStack->Parameters.DeviceIoControl.OutputBufferLength;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue