Hans Leidekker : msi: Remove an incorrect error trace.

Alexandre Julliard julliard at winehq.org
Thu Dec 23 11:28:08 CST 2010


Module: wine
Branch: master
Commit: 05a95f2e9224e242efcf6bc2b07f23f7cce342f4
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=05a95f2e9224e242efcf6bc2b07f23f7cce342f4

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Thu Dec 23 17:09:06 2010 +0100

msi: Remove an incorrect error trace.

---

 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 );
     }




More information about the wine-cvs mailing list