Commit 071ea06a authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

ole32: Remove a useless trace.

Remove an incorrect comment.
parent dd8a736c
...@@ -241,7 +241,6 @@ static DWORD CALLBACK host_object_proc(LPVOID p) ...@@ -241,7 +241,6 @@ static DWORD CALLBACK host_object_proc(LPVOID p)
{ {
if (msg.hwnd == NULL && msg.message == RELEASEMARSHALDATA) if (msg.hwnd == NULL && msg.message == RELEASEMARSHALDATA)
{ {
trace("releasing marshal data\n");
CoReleaseMarshalData(data->stream); CoReleaseMarshalData(data->stream);
SetEvent((HANDLE)msg.lParam); SetEvent((HANDLE)msg.lParam);
} }
...@@ -523,14 +522,6 @@ static void test_proxy_marshal_and_unmarshal(void) ...@@ -523,14 +522,6 @@ static void test_proxy_marshal_and_unmarshal(void)
ok_more_than_one_lock(); ok_more_than_one_lock();
/* now the proxies should be as follows:
* pProxy2 -> &Test_ClassFactory
* they should NOT be as follows:
* pProxy -> &Test_ClassFactory
* pProxy2 -> pProxy
* the above can only really be tested by looking in +ole traces
*/
IUnknown_Release(pProxy2); IUnknown_Release(pProxy2);
/* unmarshal all of the proxies to check that the object stub still exists */ /* unmarshal all of the proxies to check that the object stub still exists */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment