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

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Alexandre Julliard 2020-04-07 14:25:07 +02:00
parent 0163db5152
commit 341feeb10e
2 changed files with 2 additions and 2 deletions

View File

@ -2682,7 +2682,7 @@ static void pdb_process_symbol_imports(const struct process* pcs,
{
ptr = (const char*)imp + sizeof(*imp) + strlen(imp->filename);
if (i >= CV_MAX_MODULES) FIXME("Out of bounds!!!\n");
if (!_strnicmp(pdb_lookup->filename, imp->filename, -1))
if (!stricmp(pdb_lookup->filename, imp->filename))
{
if (module_index != -1) FIXME("Twice the entry\n");
else module_index = i;

View File

@ -127,7 +127,7 @@ static BOOL pe_find_section(struct image_file_map* fmap, const char* name,
sectname = memcpy(tmp, sectname, IMAGE_SIZEOF_SHORT_NAME);
tmp[IMAGE_SIZEOF_SHORT_NAME] = '\0';
}
if (!_strnicmp(sectname, name, -1))
if (!stricmp(sectname, name))
{
ism->fmap = fmap;
ism->sidx = i;