aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-thread.c
diff options
context:
space:
mode:
authorMichael Zucci <zucchi@src.gnome.org>2000-09-12 08:57:09 +0800
committerMichael Zucci <zucchi@src.gnome.org>2000-09-12 08:57:09 +0800
commita035de68d2b2e7739fde08ad924b106c8e8a45d6 (patch)
tree8d7e3866c2aad60bfbf115e77738b54d8bd9a5da /mail/message-thread.c
parentc87e7df0906198271d0d40d2e59b5d54711826fd (diff)
downloadgsoc2013-evolution-a035de68d2b2e7739fde08ad924b106c8e8a45d6.tar
gsoc2013-evolution-a035de68d2b2e7739fde08ad924b106c8e8a45d6.tar.gz
gsoc2013-evolution-a035de68d2b2e7739fde08ad924b106c8e8a45d6.tar.bz2
gsoc2013-evolution-a035de68d2b2e7739fde08ad924b106c8e8a45d6.tar.lz
gsoc2013-evolution-a035de68d2b2e7739fde08ad924b106c8e8a45d6.tar.xz
gsoc2013-evolution-a035de68d2b2e7739fde08ad924b106c8e8a45d6.tar.zst
gsoc2013-evolution-a035de68d2b2e7739fde08ad924b106c8e8a45d6.zip
(prune_empty): Plugged another small leak.
svn path=/trunk/; revision=5353
Diffstat (limited to 'mail/message-thread.c')
-rw-r--r--mail/message-thread.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mail/message-thread.c b/mail/message-thread.c
index 4e976b4984..1306fafe0c 100644
--- a/mail/message-thread.c
+++ b/mail/message-thread.c
@@ -101,6 +101,7 @@ prune_empty(struct _container **cp)
if (c->child == NULL) {
d(printf("removing empty node\n"));
lastc->next = c->next;
+ g_free(c);
continue;
}
if (c->parent || c->child->next==0) {