mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Guard a sprite/actor access with sector[].hitag as index from OOB.
Unlikely but possible for rogue CON code. git-svn-id: https://svn.eduke32.com/eduke32@4185 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
ce68b4ab0f
commit
67c1157b64
2 changed files with 6 additions and 3 deletions
|
@ -6737,6 +6737,7 @@ int32_t A_Spawn(int32_t j, int32_t pn)
|
|||
sp->extra = 0;
|
||||
else sp->extra = 1;
|
||||
|
||||
// TRAIN_SECTOR_TO_SE_INDEX
|
||||
sector[sect].hitag = i;
|
||||
|
||||
j = 0;
|
||||
|
|
|
@ -5100,12 +5100,14 @@ HORIZONLY:
|
|||
// ST_2_UNDERWATER
|
||||
if (p->cursectnum >= 0 && psectlotag < 3)
|
||||
{
|
||||
const sectortype *sec = §or[p->cursectnum];
|
||||
// p->cursectnum = s->sectnum;
|
||||
|
||||
if (!ud.noclip && sector[p->cursectnum].lotag == ST_31_TWO_WAY_TRAIN)
|
||||
if (!ud.noclip && sec->lotag == ST_31_TWO_WAY_TRAIN)
|
||||
{
|
||||
// XXX: POTENTIAL_OOB
|
||||
if (sprite[sector[p->cursectnum].hitag].xvel && actor[sector[p->cursectnum].hitag].t_data[0] == 0)
|
||||
// TRAIN_SECTOR_TO_SE_INDEX
|
||||
if ((unsigned)sec->hitag < MAXSPRITES && sprite[sec->hitag].xvel
|
||||
&& actor[sec->hitag].t_data[0] == 0)
|
||||
{
|
||||
P_QuickKill(p);
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue