Commit 810a2f0b authored by Alexandre Julliard's avatar Alexandre Julliard

hhctrl.ocx: Use stricmp() instead of _strnicmp(..., -1).

parent b61cfa88
......@@ -102,7 +102,7 @@ static WCHAR *SearchCHM_File(IStorage *pStorage, const WCHAR *file, const char *
char *text = &content.buf[1];
int textlen = content.len-1;
if(!_strnicmp(node_name.buf, "title", -1))
if(!stricmp(node_name.buf, "title"))
{
int wlen = MultiByteToWideChar(CP_ACP, 0, text, textlen, NULL, 0);
title = heap_alloc((wlen+1)*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