[NTOS:IO] Break on IoRaiseInformationalHardError

This one will eventually be reverted. For now, this will help debugging CORE-17587
This commit is contained in:
Jérôme Gardou 2021-05-26 10:48:29 +02:00
parent 53bd132cec
commit 42ec1388d7

View file

@ -712,6 +712,9 @@ IoRaiseInformationalHardError(IN NTSTATUS ErrorStatus,
IN PKTHREAD Thread)
{
DPRINT1("IoRaiseInformationalHardError: %lx, '%wZ'\n", ErrorStatus, String);
#if DBG
__debugbreak(); /* CORE-17587 */
#endif
return FALSE;
}