msi: Don't print traces for addref and release.

oldstable
Mike McCormack 2006-11-01 15:09:02 +09:00 committed by Alexandre Julliard
parent 9a4ba8c114
commit 3f2cedd41f
1 changed files with 1 additions and 5 deletions

View File

@ -128,7 +128,7 @@ void *msihandle2msiinfo(MSIHANDLE handle, UINT type)
goto out;
ret = msihandletable[handle].obj;
msiobj_addref( ret );
out:
LeaveCriticalSection( &MSI_handle_cs );
@ -153,8 +153,6 @@ void *alloc_msiobject(UINT type, UINT size, msihandledestructor destroy )
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;