aboutsummaryrefslogtreecommitdiff
path: root/src/burn/engine/search.cpp
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2026-01-02 16:12:01 -0800
committerRob Mensching <rob@firegiant.com>2026-01-02 16:12:01 -0800
commitb1b90775c9d715ae4193e3faaa419cf163a49bd5 (patch)
tree3afc06dc51d0452b053ea4b57312fa354323fd5a /src/burn/engine/search.cpp
parentbd1110871eacff77d2de804c627a7851e95f1ebc (diff)
downloadwix-b1b90775c9d715ae4193e3faaa419cf163a49bd5.tar.gz
wix-b1b90775c9d715ae4193e3faaa419cf163a49bd5.tar.bz2
wix-b1b90775c9d715ae4193e3faaa419cf163a49bd5.zip
Random fixes
Diffstat (limited to 'src/burn/engine/search.cpp')
-rw-r--r--src/burn/engine/search.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/burn/engine/search.cpp b/src/burn/engine/search.cpp
index 1f128e95..a60215fe 100644
--- a/src/burn/engine/search.cpp
+++ b/src/burn/engine/search.cpp
@@ -334,7 +334,7 @@ extern "C" HRESULT SearchesParseFromXml(
334 { 334 {
335 pSearch->MsiProductSearch.Type = BURN_MSI_PRODUCT_SEARCH_TYPE_ASSIGNMENT; 335 pSearch->MsiProductSearch.Type = BURN_MSI_PRODUCT_SEARCH_TYPE_ASSIGNMENT;
336 } 336 }
337 else if (CSTR_EQUAL == ::CompareStringW(LOCALE_INVARIANT, 0, scz, -1, L"exists", -1)) 337 else if (CSTR_EQUAL == ::CompareStringOrdinal(scz, -1, L"exists", -1, FALSE))
338 { 338 {
339 pSearch->MsiProductSearch.Type = BURN_MSI_PRODUCT_SEARCH_TYPE_EXISTS; 339 pSearch->MsiProductSearch.Type = BURN_MSI_PRODUCT_SEARCH_TYPE_EXISTS;
340 } 340 }