Piotr Caban : msi: Use case sensitive compare in handle_msi_break.

Alexandre Julliard julliard at winehq.org
Fri Apr 5 16:04:58 CDT 2019


Module: wine
Branch: master
Commit: 8c4b75f252dd5f127320144a43472d4558489af4
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=8c4b75f252dd5f127320144a43472d4558489af4

Author: Piotr Caban <piotr at codeweavers.com>
Date:   Thu Apr  4 19:57:05 2019 +0200

msi: Use case sensitive compare in handle_msi_break.

Signed-off-by: Piotr Caban <piotr at codeweavers.com>
Signed-off-by: Hans Leidekker <hans at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/msi/custom.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/msi/custom.c b/dlls/msi/custom.c
index facb1d8..647961c 100644
--- a/dlls/msi/custom.c
+++ b/dlls/msi/custom.c
@@ -468,7 +468,7 @@ static void handle_msi_break(LPCSTR target)
     if (!GetEnvironmentVariableA("MsiBreak", val, MAX_PATH))
         return;
 
-    if (strcasecmp(val, target))
+    if (strcmp(val, target))
         return;
 
     sprintf(msg, format, GetCurrentProcessId(), GetCurrentProcessId());




More information about the wine-cvs mailing list