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?

PHP Code:
for (idx 0idx 3000idx++)
{
    
Ret _memicmp(BuildRef[idx].NameLocationstrlen(Location));
    if (
Ret == 0)
    {
        
// Do all my logic here
    
}

regards,