diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-08-27 08:59:45 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-08-27 08:59:45 +0800 |
commit | a1bf7aa6c41783b0d8f26a9c25e18e1ad7372793 (patch) | |
tree | e8ff17c8dd0f9e744f613a2c73314c2037f38196 /camel/camel-mime-utils.c | |
parent | 6936253be412510e481f5893062451e9d5f3a087 (diff) | |
download | gsoc2013-evolution-a1bf7aa6c41783b0d8f26a9c25e18e1ad7372793.tar.gz 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.c | 2 |
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); } |