mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
- RaiseException should pass the exception parameters even if the exception is non-continuable.
svn path=/trunk/; revision=9541
This commit is contained in:
parent
0f0b33c44c
commit
206298fe27
1 changed files with 2 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue