Commit 3f2cedd4 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

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

parent 9a4ba8c1
......@@ -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;
......
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