1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-13 19:22:58 +00:00

Fix memleak

This commit is contained in:
Nikolas Garofil 2010-02-22 16:50:10 +01:00
parent 87a33551f7
commit 80ee83c87f

View File

@ -174,6 +174,8 @@ void free_combine(struct text_object *obj)
free(cd->left);
free(cd->seperation);
free(cd->right);
free_text_objects(obj->sub->sub, 1);
free(obj->sub->sub);
free_text_objects(obj->sub, 1);
free(obj->sub);
free(obj->data.opaque);