From 18c55dee3539663f963f82d70273d68704921f31 Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Wed, 17 Nov 2010 10:57:54 +0100 Subject: [PATCH] msi: Improve tracing in MsiQueryFeatureStateW. --- dlls/msi/msi.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dlls/msi/msi.c b/dlls/msi/msi.c index b4a41429d03..ca8ed7dc451 100644 --- a/dlls/msi/msi.c +++ b/dlls/msi/msi.c @@ -2709,17 +2709,17 @@ INSTALLSTATE WINAPI MsiQueryFeatureStateW(LPCWSTR szProduct, LPCWSTR szFeature) msi_free(path); } - - TRACE("%s %s -> %d\n", debugstr_w(szProduct), debugstr_w(szFeature), r); msi_free(components); if (missing) - return INSTALLSTATE_ADVERTISED; - - if (source) - return INSTALLSTATE_SOURCE; + r = INSTALLSTATE_ADVERTISED; + else if (source) + r = INSTALLSTATE_SOURCE; + else + r = INSTALLSTATE_LOCAL; - return INSTALLSTATE_LOCAL; + TRACE("%s %s -> %d\n", debugstr_w(szProduct), debugstr_w(szFeature), r); + return r; } /****************************************************************** -- 2.11.4.GIT