summaryrefslogtreecommitdiff
path: root/src/strife
diff options
context:
space:
mode:
authorSimon Howard2015-04-26 18:55:43 -0400
committerSimon Howard2015-04-26 18:55:43 -0400
commit1bcff874c52aca3134cee636178ab5d6272fef58 (patch)
treebc43085ef719d5c8fc9633e029e969bc33860abc /src/strife
parenta915b13e0d0c612c12b8f54132ffa3189375dde5 (diff)
downloadchocolate-doom-1bcff874c52aca3134cee636178ab5d6272fef58.tar.gz
chocolate-doom-1bcff874c52aca3134cee636178ab5d6272fef58.tar.bz2
chocolate-doom-1bcff874c52aca3134cee636178ab5d6272fef58.zip
Don't read currentthinker->next after Z_Free().
Save the next pointer in the P_RunThinkers() loop when iterating through thinkers, so that if the current thinker is freed we can still advance to the next thinker without dereferencing freed memory.
Diffstat (limited to 'src/strife')
-rw-r--r--src/strife/p_tick.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/strife/p_tick.c b/src/strife/p_tick.c
index f4ed2711..c0dd4786 100644
--- a/src/strife/p_tick.c
+++ b/src/strife/p_tick.c
@@ -99,11 +99,13 @@ void P_AllocateThinker (thinker_t* thinker)
//
void P_RunThinkers (void)
{
- thinker_t* currentthinker;
+ thinker_t *currentthinker, *nextthinker;
currentthinker = thinkercap.next;
while (currentthinker != &thinkercap)
{
+ nextthinker = currentthinker->next;
+
if ( currentthinker->function.acv == (actionf_v)(-1) )
{
// time to remove it
@@ -116,7 +118,8 @@ void P_RunThinkers (void)
if (currentthinker->function.acp1)
currentthinker->function.acp1 (currentthinker);
}
- currentthinker = currentthinker->next;
+
+ currentthinker = nextthinker;
}
}