Commit a4d391d6 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

uninstaller: Perform a case-insensitive search for the application to uninstall.

Registry keys are case-insensitive so the match should be too.
parent 7170a202
......@@ -98,7 +98,7 @@ static void RemoveSpecificProgram(WCHAR *nameW)
for (i=0; i < numentries; i++)
{
if (lstrcmpW(entries[i].key, nameW) == 0)
if (CompareStringW(GetThreadLocale(), NORM_IGNORECASE, entries[i].key, -1, nameW, -1) == CSTR_EQUAL)
{
entries[i].active++;
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment