summaryrefslogtreecommitdiffstats
path: root/charset.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2002-12-10 20:56:47 +0000
committerThomas Roessler <roessler@does-not-exist.org>2002-12-10 20:56:47 +0000
commitb62866d93e48a510912a1f503d907a2320da9238 (patch)
tree807a4c446cbec93779394a22cbc645430c8c94b1 /charset.c
parentcd96c3449e02199afe9cde511f128bb387f5f4d3 (diff)
Replace safe_free calls by the FREE macro.
Diffstat (limited to 'charset.c')
-rw-r--r--charset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/charset.c b/charset.c
index 86e7a3c7..65afc9e3 100644
--- a/charset.c
+++ b/charset.c
@@ -440,7 +440,7 @@ int mutt_convert_string (char **ps, const char *from, const char *to, int flags)
*ob = '\0';
- safe_free ((void **) ps);
+ FREE (ps);
*ps = buf;
mutt_str_adjust (ps);
@@ -579,5 +579,5 @@ void fgetconv_close (FGETCONV **_fc)
if (fc->cd != (iconv_t)-1)
iconv_close (fc->cd);
- safe_free ((void **) _fc);
+ FREE (_fc);
}