Commit eb799366 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Use case insensitive comparison in parse_classid.

parent 7e38d686
...@@ -154,7 +154,7 @@ static BOOL parse_classid(const PRUnichar *classid, CLSID *clsid) ...@@ -154,7 +154,7 @@ static BOOL parse_classid(const PRUnichar *classid, CLSID *clsid)
static const PRUnichar clsidW[] = {'c','l','s','i','d',':'}; static const PRUnichar clsidW[] = {'c','l','s','i','d',':'};
if(strncmpW(classid, clsidW, sizeof(clsidW)/sizeof(WCHAR))) if(strncmpiW(classid, clsidW, sizeof(clsidW)/sizeof(WCHAR)))
return FALSE; return FALSE;
ptr = classid + sizeof(clsidW)/sizeof(WCHAR); ptr = classid + sizeof(clsidW)/sizeof(WCHAR);
......
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