+ Fixed bug in "CheckWildCard"

This commit is contained in:
Ladislav Zezula
2015-05-21 09:14:56 +02:00
parent 58166d6ba7
commit c26e12c79f

View File

@@ -93,11 +93,12 @@ bool CheckWildCard(const char * szString, const char * szWildCard)
if(szString[0] == 0)
return false;
szString++;
}
else
{
return (szString[0] == 0) ? true : false;
}
if(szString[0] == 0)
return true;
szString++;
}
}