From 742795c4b6daa82d92b2a3e5960ac7db7f8a7b54 Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Fri, 28 Mar 2014 00:12:26 +0200 Subject: Bugfix. * lib/transform.c (gray_free_transform_expr): Fix the loop. --- lib/transform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/transform.c b/lib/transform.c index 0dbe443..4b68a47 100644 --- a/lib/transform.c +++ b/lib/transform.c @@ -383,7 +383,7 @@ gray_free_transform_expr () { while (transform_head) { - struct transform *next = transform_head; + struct transform *next = transform_head->next; free_transform (transform_head); transform_head = next; } -- cgit v1.2.1