1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

rpcrt4: Make sure that the stack is set when catching an exception.

Fixes a test crash in interpreted mode.
This commit is contained in:
Alexandre Julliard 2024-03-28 12:27:32 +01:00
parent 2d801c46c7
commit 8bac669056

View file

@ -947,6 +947,7 @@ LONG_PTR CDECL ndr_client_call( PMIDL_STUB_DESC pStubDesc, PFORMAT_STRING pForma
{
/* 7. FREE */
TRACE( "FREE\n" );
stubMsg.StackTop = (unsigned char *)stack_top;
client_do_args(&stubMsg, pFormat, STUBLESS_FREE, fpu_stack,
number_of_params, (unsigned char *)&RetVal);
RetVal = NdrProxyErrorHandler(GetExceptionCode());