Fix typo in replace_stringex native

This commit is contained in:
Arkshine 2015-12-24 19:12:55 +01:00
parent ac37f8053b
commit b0e5e8d331

View File

@ -348,12 +348,12 @@ static cell AMX_NATIVE_CALL replace_stringex(AMX *amx, cell *params)
char *ptr = UTIL_ReplaceEx(text, maxlength + 1, search, searchLen, replace, replaceLen, caseSensitive); // + EOS
if (ptr == NULL)
if (!ptr)
{
return -1;
}
set_amxstring(amx, params[1], ptr, maxlength);
set_amxstring(amx, params[1], text, maxlength);
return ptr - text;
}