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

Fix memleak

This commit is contained in:
Nikolas Garofil 2010-02-22 16:49:38 +01:00
parent f48124bdea
commit 7a8c1e45c8

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);