Module: wine Branch: master Commit: fff2d8e82b65b09ca183828a232da7626b6b6b56 URL: http://source.winehq.org/git/wine.git/?a=commit;h=fff2d8e82b65b09ca183828a23...
Author: Rob Shearman rob@codeweavers.com Date: Mon Nov 13 11:55:56 2006 +0000
ole32: Re-enable the code that unregisters interfaces with the RPC runtime.
---
dlls/ole32/rpc.c | 5 +---- 1 files changed, 1 insertions(+), 4 deletions(-)
diff --git a/dlls/ole32/rpc.c b/dlls/ole32/rpc.c index 368a6ba..26a139e 100644 --- a/dlls/ole32/rpc.c +++ b/dlls/ole32/rpc.c @@ -669,12 +669,9 @@ void RPC_UnregisterInterface(REFIID riid { if (!--rif->refs) { -#if 0 /* this is a stub in builtin and spams the console with FIXME's */ - IID iid = *riid; /* RpcServerUnregisterIf doesn't take const IID */ - RpcServerUnregisterIf((RPC_IF_HANDLE)&rif->If, &iid, 0); + RpcServerUnregisterIf((RPC_IF_HANDLE)&rif->If, NULL, TRUE); list_remove(&rif->entry); HeapFree(GetProcessHeap(), 0, rif); -#endif } break; }