From 0c5f83040a72bffebe04caae076104c0552e0e92 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Mon, 10 Oct 2011 23:58:59 +0200 Subject: [PATCH] msi: Move a TRACE before the continue (Smatch). --- dlls/msi/upgrade.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msi/upgrade.c b/dlls/msi/upgrade.c index 8e843aa0c4b..94806610045 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");