Module: wine Branch: master Commit: 3f2cedd41fed8469bcf217794a4c12dab8e3a850 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3f2cedd41fed8469bcf217794a...
Author: Mike McCormack mike@codeweavers.com Date: Wed Nov 1 15:09:02 2006 +0900
msi: Don't print traces for addref and release.
---
dlls/msi/handle.c | 6 +----- 1 files changed, 1 insertions(+), 5 deletions(-)
diff --git a/dlls/msi/handle.c b/dlls/msi/handle.c index 0193277..6af3c41 100644 --- a/dlls/msi/handle.c +++ b/dlls/msi/handle.c @@ -128,7 +128,7 @@ void *msihandle2msiinfo(MSIHANDLE handle goto out; ret = msihandletable[handle].obj; msiobj_addref( ret ); - + out: LeaveCriticalSection( &MSI_handle_cs );
@@ -153,8 +153,6 @@ void *alloc_msiobject(UINT type, UINT si
void msiobj_addref( MSIOBJECTHDR *info ) { - TRACE("%p\n", info); - if( !info ) return;
@@ -181,8 +179,6 @@ int msiobj_release( MSIOBJECTHDR *info ) { int ret;
- TRACE("%p\n",info); - if( !info ) return -1;