https://git.reactos.org/?p=reactos.git;a=commitdiff;h=b0ebf68d981ece0e2a1b91...
commit b0ebf68d981ece0e2a1b916fbd2510adf989baee Author: Jérôme Gardou jerome.gardou@reactos.org AuthorDate: Wed May 26 11:03:34 2021 +0200 Commit: Jérôme Gardou jerome.gardou@reactos.org CommitDate: Wed May 26 11:03:34 2021 +0200
[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; }