summaryrefslogtreecommitdiff
path: root/src/common/timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/timer.c')
-rw-r--r--src/common/timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/timer.c b/src/common/timer.c
index 34c95fcf6..a2e67aa09 100644
--- a/src/common/timer.c
+++ b/src/common/timer.c
@@ -452,7 +452,7 @@ void timer_final(void)
struct timer_func_list *tfl;
struct timer_func_list *next;
- for( tfl=tfl_root; tfl != NULL; tfl = next )
+ for( tfl=tfl_root; tfl != NULL; tfl = next ) {
next = tfl->next; // copy next pointer
aFree(tfl->name); // free structures
aFree(tfl);