mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user