From 206298fe27cd33ab0e1d0dbacd788642f5f5a649 Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Sat, 29 May 2004 11:51:33 +0000 Subject: [PATCH] - RaiseException should pass the exception parameters even if the exception is non-continuable. svn path=/trunk/; revision=9541 --- reactos/lib/kernel32/except/except.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/reactos/lib/kernel32/except/except.c b/reactos/lib/kernel32/except/except.c index eb2ba0aba5b..597ff008d76 100644 --- a/reactos/lib/kernel32/except/except.c +++ b/reactos/lib/kernel32/except/except.c @@ -1,4 +1,4 @@ -/* $Id: except.c,v 1.12 2003/08/24 14:49:55 dwelch Exp $ +/* $Id: except.c,v 1.13 2004/05/29 11:51:33 navaraf Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS system libraries @@ -141,10 +141,9 @@ RaiseException ( } /* * If the exception has no argument, - * or it is a non-continuable exception, * ignore nNumberOfArguments and lpArguments. */ - if ((NULL == lpArguments) || ExceptionRecord.ExceptionFlags) + if (NULL == lpArguments) { ExceptionRecord.NumberParameters = 0; }