From 9e6bcc9df5dc589562a16689ce8a2a548f76b77f Mon Sep 17 00:00:00 2001 From: Faruk Kasumovic Date: Thu, 7 Mar 2019 18:55:59 +0100 Subject: [PATCH] Change how properties single linked list is released from memory --- common.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/common.c b/common.c index 7a4b32b..6409769 100644 --- a/common.c +++ b/common.c @@ -32,13 +32,11 @@ property_list_t *new_property_list() { } void free_properties(property_list_t *root) { - if (root != 0) { - property_list_t *tmp = 0; - do { - tmp = root->pnext; - free(root); - root = tmp; - } while(tmp); + property_list_t *tmp = 0; + while(root) { + tmp = root->pnext; + free(root); + root = tmp; } }