Merge pull request #230 from Ni3znajomy/fix-checking-cvar-bounds

Fix checking cvar's bounds
This commit is contained in:
Vincent Herbet 2015-03-26 21:49:33 +01:00
commit bebe9f8e2e

View File

@ -40,15 +40,18 @@ static cell AMX_NATIVE_CALL create_cvar(AMX *amx, cell *params)
float minVal = amx_ctof(params[6]); float minVal = amx_ctof(params[6]);
float maxVal = amx_ctof(params[8]); float maxVal = amx_ctof(params[8]);
if (hasMax && minVal > maxVal) if (hasMin && hasMax)
{ {
LogError(amx, AMX_ERR_NATIVE, "The minimum value can not be above the maximum value"); if (minVal > maxVal)
return 0; {
} LogError(amx, AMX_ERR_NATIVE, "The minimum value can not be above the maximum value");
else if (hasMin && maxVal < minVal) return 0;
{ }
LogError(amx, AMX_ERR_NATIVE, "The maximum value can not be below the minimum value"); else if (maxVal < minVal)
return 0; {
LogError(amx, AMX_ERR_NATIVE, "The maximum value can not be below the minimum value");
return 0;
}
} }
g_CvarManager.SetCvarMin(info, hasMin, minVal, plugin->getId()); g_CvarManager.SetCvarMin(info, hasMin, minVal, plugin->getId());