Commit 86c0bb3b authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

ntdll: Clear alignment check flag before entering exception handler.

parent 28689779
......@@ -924,7 +924,8 @@ static EXCEPTION_RECORD *setup_exception( SIGCONTEXT *sigcontext, raise_func fun
/* now modify the sigcontext to return to the raise function */
ESP_sig(sigcontext) = (DWORD)stack;
EIP_sig(sigcontext) = (DWORD)func;
EFL_sig(sigcontext) &= ~0x100; /* clear single-step flag */
/* clear single-step and align check flag */
EFL_sig(sigcontext) &= ~(0x100|0x40000);
CS_sig(sigcontext) = wine_get_cs();
DS_sig(sigcontext) = wine_get_ds();
ES_sig(sigcontext) = wine_get_es();
......
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