aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-utils.c
diff options
context:
space:
mode:
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);
}