diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-08-01 06:15:31 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-08-01 06:15:31 +0800 |
commit | 4b87fc9067e02f1925bc834e6cbd4b96165b53e3 (patch) | |
tree | a7976395c410fd846cf964f09d23e079cde04bb3 /camel/providers/imap | |
parent | c441f00d357660aa2abecbaa27990ac5b636c0cf (diff) | |
download | gsoc2013-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')
-rw-r--r-- | camel/providers/imap/camel-imap-utils.c | 1 |
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); } |