Commit 70c39c44 authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll: Correctly jump to the modified context after an exception on x86_64.

parent c1a1f0cf
......@@ -1685,6 +1685,7 @@ static void raise_segv_exception( EXCEPTION_RECORD *rec, CONTEXT *context )
}
status = raise_exception( rec, context, TRUE );
if (status) raise_status( status, rec );
set_cpu_context( context );
}
......@@ -1697,6 +1698,7 @@ static void raise_generic_exception( EXCEPTION_RECORD *rec, CONTEXT *context )
{
NTSTATUS status = raise_exception( rec, context, TRUE );
if (status) raise_status( status, rec );
set_cpu_context( context );
}
......
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