mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-04-21 09:41:00 +00:00
Efficiency improvement in whitelist check
Thanks Inu!
This commit is contained in:
parent
3c66e24d88
commit
0253d6b381
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ static int io_open (lua_State *L) {
|
|||
const char *filename = luaL_checkstring(L, 1);
|
||||
int pass = 0; int i;
|
||||
int length = strlen(filename) - 1;
|
||||
for (i = 0; i < 5; i++) // wolfs == noobcoder, so manually change this with any added file types
|
||||
for (i = 0; i < (sizeof (whitelist) / sizeof(const char *)); i++)
|
||||
{
|
||||
if (!stricmp(&filename[length - (strlen(whitelist[i]) - 1)], whitelist[i]))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue