From 9f83fd357550774fd9584a80170370b29f995b17 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 3 Jan 2022 12:25:38 +0100 Subject: [PATCH] - SW: added a double deletion guard to KillBreakSprite. This code can easily run into the case where SpawnShrap kills the actor but then further operations are performed, including deleting it again. --- source/games/sw/src/break.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/games/sw/src/break.cpp b/source/games/sw/src/break.cpp index f1f36d0f9..aaf8c90cf 100644 --- a/source/games/sw/src/break.cpp +++ b/source/games/sw/src/break.cpp @@ -808,6 +808,11 @@ bool HitBreakWall(walltype* wp, int hit_x, int hit_y, int hit_z, int ang, int ty int KillBreakSprite(DSWActor* breakActor) { + // Double deletion can easily happen with the break sprite code. + if (breakActor->ObjectFlags & OF_EuthanizeMe) + return false; + + // Does not actually kill the sprite so it will be valid for the rest // of the loop traversal.