aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-utils.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2000-08-27 08:59:45 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2000-08-27 08:59:45 +0800
commita1bf7aa6c41783b0d8f26a9c25e18e1ad7372793 (patch)
treee8ff17c8dd0f9e744f613a2c73314c2037f38196 /camel/camel-mime-utils.c
parent6936253be412510e481f5893062451e9d5f3a087 (diff)
downloadgsoc2013-evolution-a1bf7aa6c41783b0d8f26a9c25e18e1ad7372793.tar
gsoc2013-evolution-a1bf7aa6c41783b0d8f26a9c25e18e1ad7372793.tar.gz
gsoc2013-evolution-a1bf7aa6c41783b0d8f26a9c25e18e1ad7372793.tar.bz2
gsoc2013-evolution-a1bf7aa6c41783b0d8f26a9c25e18e1ad7372793.tar.lz
gsoc2013-evolution-a1bf7aa6c41783b0d8f26a9c25e18e1ad7372793.tar.xz
gsoc2013-evolution-a1bf7aa6c41783b0d8f26a9c25e18e1ad7372793.tar.zst
gsoc2013-evolution-a1bf7aa6c41783b0d8f26a9c25e18e1ad7372793.zip
Use `g_free()' instead of `free()' in the `header_decode_text()'
helper function. svn path=/trunk/; revision=5061
Diffstat (limited to 'camel/camel-mime-utils.c')
-rw-r--r--camel/camel-mime-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c
index 781ae59c23..90d7496ce3 100644
--- a/camel/camel-mime-utils.c
+++ b/camel/camel-mime-utils.c
@@ -932,7 +932,7 @@ header_decode_text(const char *in, int inlen)
if (decword) {
out = g_string_append_len(out, inptr, encstart-inptr);
out = g_string_append_len(out, decword, strlen(decword));
- free(decword);
+ g_free (decword);
} else {
out = g_string_append_len(out, inptr, encend-inptr+2);
}