From b0ebf68d981ece0e2a1b916fbd2510adf989baee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gardou?= Date: Wed, 26 May 2021 11:03:34 +0200 Subject: [PATCH] [NTOS:IO] Be more specific for chasing CORE-17587 Addendum to 42ec1388d7 --- ntoskrnl/io/iomgr/error.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntoskrnl/io/iomgr/error.c b/ntoskrnl/io/iomgr/error.c index 7f33cac131d..db8c0c97903 100644 --- a/ntoskrnl/io/iomgr/error.c +++ b/ntoskrnl/io/iomgr/error.c @@ -713,7 +713,7 @@ IoRaiseInformationalHardError(IN NTSTATUS ErrorStatus, { DPRINT1("IoRaiseInformationalHardError: %lx, '%wZ'\n", ErrorStatus, String); #if DBG - __debugbreak(); /* CORE-17587 */ + ASSERT(ErrorStatus != STATUS_FILE_CORRUPT_ERROR); /* CORE-17587 */ #endif return FALSE; }