From c8aa006f82f3d304fb011426119fb11bbddb2e92 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 23 Feb 2020 17:12:40 +0100 Subject: [PATCH] - fixed sound channel iterator to properly handle callbacks that delete sounds.cpp --- source/common/sound/s_soundinternal.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/common/sound/s_soundinternal.h b/source/common/sound/s_soundinternal.h index b978b3de6..30b73f139 100644 --- a/source/common/sound/s_soundinternal.h +++ b/source/common/sound/s_soundinternal.h @@ -380,10 +380,13 @@ public: template bool EnumerateChannels(func callback) { - for (FSoundChan* chan = Channels; chan; chan = chan->NextChan) + FSoundChan* chan = Channels; + while (chan) { + auto next = chan = chan->NextChan; int res = callback(chan); if (res) return res > 0; + chan = next; } return false; }