8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 403a31e + 060f0bd commit e039372Copy full SHA for e039372
MemoryModule.c
@@ -766,14 +766,14 @@ static int _compare(const void *a, const void *b)
766
{
767
const struct ExportNameEntry *p1 = (const struct ExportNameEntry*) a;
768
const struct ExportNameEntry *p2 = (const struct ExportNameEntry*) b;
769
- return _stricmp(p1->name, p2->name);
+ return strcmp(p1->name, p2->name);
770
}
771
772
static int _find(const void *a, const void *b)
773
774
LPCSTR *name = (LPCSTR *) a;
775
const struct ExportNameEntry *p = (const struct ExportNameEntry*) b;
776
- return _stricmp(*name, p->name);
+ return strcmp(*name, p->name);
777
778
779
FARPROC MemoryGetProcAddress(HMEMORYMODULE mod, LPCSTR name)
0 commit comments