Commit 05a95f2e authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

msi: Remove an incorrect error trace.

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