aboutsummaryrefslogtreecommitdiff
path: root/src/burn/engine/search.cpp
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2026-01-30 15:18:43 -0800
committerRob Mensching <rob@firegiant.com>2026-01-30 18:38:41 -0800
commit7c3c2cad3c5e95fac151debc89c2f5629b4c6b21 (patch)
tree6d43cdcef8d50a2c524b26681418cee425a39651 /src/burn/engine/search.cpp
parenta16948df3c51f872e750798a967505a93b8439d5 (diff)
downloadwix-7c3c2cad3c5e95fac151debc89c2f5629b4c6b21.tar.gz
wix-7c3c2cad3c5e95fac151debc89c2f5629b4c6b21.tar.bz2
wix-7c3c2cad3c5e95fac151debc89c2f5629b4c6b21.zip
Many small code quality 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 }