From beaaf0514fa194081005e232f43bf99453abc383 Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Tue, 9 Jan 2007 17:14:45 +0000 Subject: [PATCH] ole32: Fix a comment in rpc_sendreceive_thread that wasn't correct. --- dlls/ole32/rpc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/ole32/rpc.c b/dlls/ole32/rpc.c index 4f35ea1ef17..f063883406a 100644 --- a/dlls/ole32/rpc.c +++ b/dlls/ole32/rpc.c @@ -704,7 +704,8 @@ static DWORD WINAPI rpc_sendreceive_thread(LPVOID param) { struct dispatch_params *data = (struct dispatch_params *) param; - /* FIXME: trap and rethrow RPC exceptions in app thread */ + /* Note: I_RpcSendReceive doesn't raise exceptions like the higher-level + * RPC functions do */ data->status = I_RpcSendReceive((RPC_MESSAGE *)data->msg); TRACE("completed with status 0x%lx\n", data->status); -- 2.11.4.GIT