[6/6] msi: Remove an incorrect error trace.

Hans Leidekker hans at codeweavers.com
Thu Dec 23 10:09:06 CST 2010


---
 dlls/msi/package.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/dlls/msi/package.c b/dlls/msi/package.c
index c81ddad..c7e1f98 100644
--- a/dlls/msi/package.c
+++ b/dlls/msi/package.c
@@ -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 );
     }
-- 
1.7.1







More information about the wine-patches mailing list