Commit 0a01ad0c authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

krnl386: Return to CALL32_CBClient_RetAddr from CBClientThunkSL().

Fixes a copy-paste error which was introduced by 71914125. Signed-off-by: 's avatarZebediah Figura <zfigura@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 1f3eb399
......@@ -2094,8 +2094,8 @@ void WINAPI CBClientThunkSL( CONTEXT *context )
stackLin[3] = 0;
stackLin[4] = OFFSETOF(stack) + 12;
stackLin[5] = SELECTOROF(stack);
stackLin[6] = OFFSETOF(CALL32_CBClientEx_RetAddr); /* overwrite return address */
stackLin[7] = SELECTOROF(CALL32_CBClientEx_RetAddr);
stackLin[6] = OFFSETOF(CALL32_CBClient_RetAddr); /* overwrite return address */
stackLin[7] = SELECTOROF(CALL32_CBClient_RetAddr);
context->Eax = CALL32_CBClient( proc, args, stackLin + 4, &context->Esi );
stack16_pop( 12 );
}
......
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