[NTOS:IO]

- IopCompleteRequest: in case of an exception, fail the IRP as shown by kmtest:IoReadWrite
CORE-9624

svn path=/trunk/; revision=67489
This commit is contained in:
Thomas Faber 2015-05-01 11:52:32 +00:00
parent f1b1a2086e
commit fbe8fcb291

View file

@ -293,7 +293,8 @@ IopCompleteRequest(IN PKAPC Apc,
}
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
{
/* Do nothing */
/* Fail the IRP */
Irp->IoStatus.Status = _SEH2_GetExceptionCode();
}
_SEH2_END;
}