Michael Stefaniuc : msi: Move a TRACE before the continue (Smatch).

Alexandre Julliard julliard at winehq.org
Tue Oct 11 14:03:38 CDT 2011


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

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Mon Oct 10 23:58:59 2011 +0200

msi: Move a TRACE before the continue (Smatch).

---

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

diff --git a/dlls/msi/upgrade.c b/dlls/msi/upgrade.c
index 8e843aa..9480661 100644
--- a/dlls/msi/upgrade.c
+++ b/dlls/msi/upgrade.c
@@ -185,8 +185,8 @@ static UINT ITERATE_FindRelatedProducts(MSIRECORD *rec, LPVOID param)
             if (!check_language(check, language, attributes))
             {
                 index ++;
-                continue;
                 TRACE("language doesn't match\n");
+                continue;
             }
             TRACE("found related product\n");
 




More information about the wine-cvs mailing list