[PATCH 3/4] Trace DOM document reference counts

Nikolay Sivov nsivov at codeweavers.com
Sun Nov 7 15:01:50 CST 2010


---
 dlls/msxml3/domdoc.c |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dlls/msxml3/domdoc.c b/dlls/msxml3/domdoc.c
index bec6ed4..e7c15e3 100644
--- a/dlls/msxml3/domdoc.c
+++ b/dlls/msxml3/domdoc.c
@@ -864,8 +864,9 @@ static ULONG WINAPI domdoc_AddRef(
      IXMLDOMDocument3 *iface )
 {
     domdoc *This = impl_from_IXMLDOMDocument3( iface );
-    TRACE("%p\n", This );
-    return InterlockedIncrement( &This->ref );
+    ULONG ref = InterlockedIncrement( &This->ref );
+    TRACE("(%p)->(%d)\n", This, ref );
+    return ref;
 }
 
 
@@ -873,11 +874,10 @@ static ULONG WINAPI domdoc_Release(
      IXMLDOMDocument3 *iface )
 {
     domdoc *This = impl_from_IXMLDOMDocument3( iface );
-    LONG ref;
+    LONG ref = InterlockedDecrement( &This->ref );
 
-    TRACE("%p\n", This );
+    TRACE("(%p)->(%d)\n", This, ref );
 
-    ref = InterlockedDecrement( &This->ref );
     if ( ref == 0 )
     {
         if(This->bsc)
@@ -888,7 +888,7 @@ static ULONG WINAPI domdoc_Release(
         destroy_xmlnode(&This->node);
         if(This->schema) IXMLDOMSchemaCollection2_Release(This->schema);
         if (This->stream) IStream_Release(This->stream);
-        HeapFree( GetProcessHeap(), 0, This );
+        heap_free(This);
     }
 
     return ref;
-- 
1.5.6.5



--------------000203030705060002030009--



More information about the wine-patches mailing list