http://bugs.winehq.org/show_bug.cgi?id=55705 --- Comment #7 from mokopel352@limtu.com --- The hang has happened a little differently with different versions of PDF XChange and Wine. With the current version 10.8 of PDF XChange and recent versions of Wine I have seen the hang only with a licensed version that was behind a firewall. If the portable version is started from a terminal using `WINEDEBUG=fixme-all wine PDFXEdit.exe` then after about 40 minutes it will display: 0520:err:rpc:rpcrt4_protseq_np_wait_for_new_connection wait failed with error 87 0290:err:rpc:RpcAssoc_BindConnection receive failed with error 1726 0304:err:sync:RtlpWaitForCriticalSection section 00006FFFFE369480 "dlls/combase/rpc.c: dcom registered server interfaces" wait timed out in thread 0304, blocked by 0548, retrying (60 sec) 0624:err:sync:RtlpWaitForCriticalSection section 00006FFFFD77E3A0 "dlls/rpcrt4/rpc_server.c: server_cs" wait timed out in thread 0624, blocked by 0548, retrying (60 sec) The RtlpWaitForCriticalSection messages will repeat every 60 seconds. If in file dlls/rpcrt4/rpc_transport.c, line 752 in the rpcrt4_protseq_np_wait_for_new_connection function is changed to `if (conn->io_status.Status == STATUS_SUCCESS)` instead of `if (conn->io_status.Status == STATUS_SUCCESS || conn->io_status.Status == STATUS_PIPE_CONNECTED)` the hang doesn't happen anymore. I can't imagine that this is a proper fix since I assume the extra check must be there for a good reason. But maybe someone else with the problem can try it and see if it also works for them. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.