I have a stupid question here, I using the following code to compare two string without consider the case.
So my question is, will the _memicmp cause any memmory leak?
regards,PHP Code:for (idx = 0; idx < 3000; idx++)
{
Ret = _memicmp(BuildRef[idx].Name, Location, strlen(Location));
if (Ret == 0)
{
// Do all my logic here
}
}




Reply With Quote