mirror of
https://github.com/ladislav-zezula/StormLib.git
synced 2026-02-04 05:26:24 +01:00
+ Fixed bug in "CheckWildCard"
This commit is contained in:
@@ -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++;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user