From 4c861aa40d74a6862a58859ba2b9278cb2fcdaff Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Thu, 5 Nov 2015 11:17:31 +0100 Subject: [PATCH] CID 22496 Infinite loop github issue #356 this is only relevant to old data files, it appears. --- src/spells/borders.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/spells/borders.c b/src/spells/borders.c index d1b5625cc..c197b93c2 100644 --- a/src/spells/borders.c +++ b/src/spells/borders.c @@ -263,6 +263,7 @@ void convert_firewall_timeouts(connection * b, attrib * a) wall_data *fd = (wall_data *)b->data.v; fd->countdown = a->data.i; } + a = a->next; } }