msi: Remove an incorrect error trace.

This commit is contained in:
Hans Leidekker 2010-12-23 17:09:06 +01:00 committed by Alexandre Julliard
parent 6625f07ebf
commit 05a95f2e92

View File

@ -59,8 +59,7 @@ static void remove_tracked_tempfiles( MSIPACKAGE *package )
list_remove( &temp->entry );
TRACE("deleting temp file %s\n", debugstr_w( temp->Path ));
if (!DeleteFileW( temp->Path ))
ERR("failed to delete %s\n", debugstr_w( temp->Path ));
DeleteFileW( temp->Path );
msi_free( temp->Path );
msi_free( temp );
}