Module: wine Branch: master Commit: 0c5f83040a72bffebe04caae076104c0552e0e92 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0c5f83040a72bffebe04caae07...
Author: Michael Stefaniuc mstefani@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");