mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-05 06:45:56 +00:00
fix UB
This commit is contained in:
parent
80d15d142d
commit
d89d3db126
|
@ -121,7 +121,12 @@ CExplosion::AddExplosion(CEntity *explodingEntity, CEntity *culprit, eExplosionT
|
|||
#endif
|
||||
|
||||
int n = 0;
|
||||
#ifdef FIX_BUGS
|
||||
while (n < ARRAY_SIZE(gaExplosion) && gaExplosion[n].m_nIteration != 0)
|
||||
#else
|
||||
// array overrun is UB
|
||||
while (gaExplosion[n].m_nIteration != 0 && n < ARRAY_SIZE(gaExplosion))
|
||||
#endif
|
||||
n++;
|
||||
if (n == ARRAY_SIZE(gaExplosion))
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue