https://bugs.winehq.org/show_bug.cgi?id=28659
François Gouget fgouget@codeweavers.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |fgouget@codeweavers.com Summary|rpcrt4/server test crashes |rpcrt4:server test crashes |on 32-bit FreeBSD9 |on FreeBSD and macOS
--- Comment #5 from François Gouget fgouget@codeweavers.com --- This crash is systematic on macOS (see Remi's rbernon-macos-* cloud test machines) and happens with the same 0x6ba exception:
server.c:2172: Using RpcServerRegisterIfEx Unhandled exception: 0x000006ba in 64-bit code (0x00000174013b87). [... ignore unusable backtrace ...]
See https://test.winehq.org/data/patterns.html#rpcrt4:server
Where 0x6ba == RPC_S_SERVER_UNAVAILABLE which the FreeBSD backtrace shows as coming from NdrGetBuffer() in dlls/rpcrt4/ndr_clientserver.c:
status = I_RpcGetBuffer(stubmsg->RpcMsg); if (status != RPC_S_OK) RpcRaiseException(status);
So... the RPC server is not running?