Module: wine Branch: master Commit: eb799366f5b3be1b300c26edd6c821bbeffb7661 URL: http://source.winehq.org/git/wine.git/?a=commit;h=eb799366f5b3be1b300c26edd6...
Author: Jacek Caban jacek@codeweavers.com Date: Sun Feb 6 22:30:27 2011 +0100
mshtml: Use case insensitive comparison in parse_classid.
---
dlls/mshtml/npplugin.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/mshtml/npplugin.c b/dlls/mshtml/npplugin.c index 01111a2..042478b 100644 --- a/dlls/mshtml/npplugin.c +++ b/dlls/mshtml/npplugin.c @@ -154,7 +154,7 @@ static BOOL parse_classid(const PRUnichar *classid, CLSID *clsid)
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;
ptr = classid + sizeof(clsidW)/sizeof(WCHAR);