same +1 offset in LOAD_V as STOREP fixed

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-08-11 22:11:08 +02:00
parent c94c36d68b
commit 060bddb922

View file

@ -271,7 +271,7 @@
PRVM_ERROR ("%s Progs attempted to read an out of bounds edict number", PRVM_NAME);
goto cleanup;
}
if (OPB->_int < 0 || OPB->_int + 3 >= prog->entityfields)
if (OPB->_int < 0 || OPB->_int + 3 > prog->entityfields)
{
PRVM_ERROR("%s attempted to read an invalid field in an edict (%i)", PRVM_NAME, OPB->_int);
goto cleanup;