Rob Shearman : ole32: Remove some unnecessary traces from the HeapUnknown implementation.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Mar 6 16:13:23 CST 2007


Module: wine
Branch: master
Commit: c19076cb192c777b22e3318cc65fdb6b8046a4ac
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=c19076cb192c777b22e3318cc65fdb6b8046a4ac

Author: Rob Shearman <rob at codeweavers.com>
Date:   Tue Mar  6 17:58:56 2007 +0000

ole32: Remove some unnecessary traces from the HeapUnknown implementation.

---

 dlls/ole32/tests/marshal.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/dlls/ole32/tests/marshal.c b/dlls/ole32/tests/marshal.c
index f6397eb..308d848 100644
--- a/dlls/ole32/tests/marshal.c
+++ b/dlls/ole32/tests/marshal.c
@@ -1438,7 +1438,6 @@ static HRESULT WINAPI HeapUnknown_QueryInterface(IUnknown *iface, REFIID riid, v
 static ULONG WINAPI HeapUnknown_AddRef(IUnknown *iface)
 {
     HeapUnknown *This = (HeapUnknown *)iface;
-    trace("HeapUnknown_AddRef(%p)\n", iface);
     return InterlockedIncrement((LONG*)&This->refs);
 }
 
@@ -1446,7 +1445,6 @@ static ULONG WINAPI HeapUnknown_Release(IUnknown *iface)
 {
     HeapUnknown *This = (HeapUnknown *)iface;
     ULONG refs = InterlockedDecrement((LONG*)&This->refs);
-    trace("HeapUnknown_Release(%p)\n", iface);
     if (!refs) HeapFree(GetProcessHeap(), 0, This);
     return refs;
 }




More information about the wine-cvs mailing list