- Removed setting of STATUS_DATA_OVERRUN in IoStatusBlock.Status when
authorDavid Welch <welch@cwcom.net>
Sun, 14 Mar 2004 18:27:08 +0000 (18:27 +0000)
committerDavid Welch <welch@cwcom.net>
Sun, 14 Mar 2004 18:27:08 +0000 (18:27 +0000)
IoStatusBlock.Information is greater than the output buffer length passed
in by the caller.

svn path=/trunk/; revision=8725

reactos/ntoskrnl/io/cleanup.c

index eb91d2a..bf7858d 100644 (file)
@@ -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;
              }
          }