From f4e4a5dd14df0e22a0581c44edd52ab2cc6df29e Mon Sep 17 00:00:00 2001 From: Hartmut Birr Date: Thu, 24 Apr 2003 16:55:08 +0000 Subject: [PATCH] - Call KeBugCheckWithTf for not handled kernel mode exceptions in KiDispatchException. svn path=/trunk/; revision=4573 --- reactos/ntoskrnl/ke/catch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/ntoskrnl/ke/catch.c b/reactos/ntoskrnl/ke/catch.c index 3e83f224111..9b3ca587ac0 100644 --- a/reactos/ntoskrnl/ke/catch.c +++ b/reactos/ntoskrnl/ke/catch.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: catch.c,v 1.30 2003/04/07 23:10:08 gvg Exp $ +/* $Id: catch.c,v 1.31 2003/04/24 16:55:08 hbirr Exp $ * * PROJECT: ReactOS kernel * FILE: ntoskrnl/ke/catch.c @@ -147,7 +147,7 @@ KiDispatchException(PEXCEPTION_RECORD ExceptionRecord, if (Value != ExceptionContinueExecution || 0 != (ExceptionRecord->ExceptionFlags & EXCEPTION_NONCONTINUABLE)) { - KeBugCheck (KMODE_EXCEPTION_NOT_HANDLED); + KeBugCheckWithTf(KMODE_EXCEPTION_NOT_HANDLED, 0, 0, 0, 0, Tf); } } }