Commit 1a8015cb authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Fix exception parameters number validation in x86_64 __CxxDetectRethrow.

parent 1422add1
......@@ -106,7 +106,7 @@ BOOL CDECL __CxxDetectRethrow(PEXCEPTION_POINTERS ptrs)
rec = ptrs->ExceptionRecord;
if (rec->ExceptionCode == CXX_EXCEPTION &&
rec->NumberParameters == 3 &&
rec->NumberParameters == 4 &&
rec->ExceptionInformation[0] == CXX_FRAME_MAGIC_VC6 &&
rec->ExceptionInformation[2])
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment