diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-08-10 12:06:53 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-08-10 12:06:53 +0800 |
commit | 8907111d47ab7c750a7e99636c21ceab51255243 (patch) | |
tree | 139a83dd9e86703c28a9181ddf42749cf105e459 /camel/camel-mime-utils.c | |
parent | eb410c5893a848b913bbf9de266ee79be890f405 (diff) | |
download | gsoc2013-evolution-8907111d47ab7c750a7e99636c21ceab51255243.tar.gz gsoc2013-evolution-8907111d47ab7c750a7e99636c21ceab51255243.tar.zst gsoc2013-evolution-8907111d47ab7c750a7e99636c21ceab51255243.zip |
regfree the pattern before continue'ing. This was showing up quite a bit
2001-08-10 Jeffrey Stedfast <fejj@ximian.com>
* camel-mime-utils.c (header_raw_check_mailing_list): regfree the
pattern before continue'ing. This was showing up quite a bit under
purify.
svn path=/trunk/; revision=11867
Diffstat (limited to 'camel/camel-mime-utils.c')
-rw-r--r-- | camel/camel-mime-utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c index d4c9b1f8fc..c30c4d79ba 100644 --- a/camel/camel-mime-utils.c +++ b/camel/camel-mime-utils.c @@ -3563,6 +3563,7 @@ header_raw_check_mailing_list(struct _header_raw **list) len = regerror (errcode, &pattern, NULL, 0); errstr = g_malloc0 (len + 1); regerror (errcode, &pattern, errstr, len); + regfree (&pattern); g_warning ("Internal error, compiling regex failed: %s: %s", mail_list_magic[i].pattern, errstr); |