This commit is contained in:
aap 2020-12-31 16:14:46 +01:00
parent 77884e0a57
commit 1a8a1c91cb
1 changed files with 5 additions and 0 deletions

View File

@ -104,7 +104,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;