aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/imap/camel-imap-utils.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-08-01 06:15:31 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-08-01 06:15:31 +0800
commit4b87fc9067e02f1925bc834e6cbd4b96165b53e3 (patch)
treea7976395c410fd846cf964f09d23e079cde04bb3 /camel/providers/imap/camel-imap-utils.c
parentc441f00d357660aa2abecbaa27990ac5b636c0cf (diff)
downloadgsoc2013-evolution-4b87fc9067e02f1925bc834e6cbd4b96165b53e3.tar
gsoc2013-evolution-4b87fc9067e02f1925bc834e6cbd4b96165b53e3.tar.gz
gsoc2013-evolution-4b87fc9067e02f1925bc834e6cbd4b96165b53e3.tar.bz2
gsoc2013-evolution-4b87fc9067e02f1925bc834e6cbd4b96165b53e3.tar.lz
gsoc2013-evolution-4b87fc9067e02f1925bc834e6cbd4b96165b53e3.tar.xz
gsoc2013-evolution-4b87fc9067e02f1925bc834e6cbd4b96165b53e3.tar.zst
gsoc2013-evolution-4b87fc9067e02f1925bc834e6cbd4b96165b53e3.zip
Oops, forgot to free node->function - not good.
2000-07-31 Jeffrey Stedfast <fejj@helixcode.com> * providers/imap/camel-imap-utils.c (free_sexp_node): Oops, forgot to free node->function - not good. svn path=/trunk/; revision=4438
Diffstat (limited to 'camel/providers/imap/camel-imap-utils.c')
-rw-r--r--camel/providers/imap/camel-imap-utils.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/camel/providers/imap/camel-imap-utils.c b/camel/providers/imap/camel-imap-utils.c
index 08a45de62a..954defabc5 100644
--- a/camel/providers/imap/camel-imap-utils.c
+++ b/camel/providers/imap/camel-imap-utils.c
@@ -316,6 +316,7 @@ free_sexp_node (struct sexp_node *node)
if (node->l_node)
free_sexp_node (node->l_node);
+ g_free (node->function);
g_free (node->data);
g_free (node);
}