msi: Use case sensitive compare in handle_msi_break.

Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Piotr Caban 2019-04-04 19:57:05 +02:00 committed by Alexandre Julliard
parent 17056908ac
commit 8c4b75f252
1 changed files with 1 additions and 1 deletions

View File

@ -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());