summaryrefslogtreecommitdiffstats
path: root/imap/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'imap/util.c')
-rw-r--r--imap/util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/imap/util.c b/imap/util.c
index 2aa1471e..10d93cd9 100644
--- a/imap/util.c
+++ b/imap/util.c
@@ -508,7 +508,7 @@ void imap_munge_mbox_name (char *dest, size_t dlen, const char *src)
imap_quote_string (dest, dlen, buf);
- safe_free ((void **) &buf);
+ FREE (&buf);
}
void imap_unmunge_mbox_name (char *s)
@@ -524,7 +524,7 @@ void imap_unmunge_mbox_name (char *s)
strncpy (s, buf, strlen (s));
}
- safe_free ((void **) &buf);
+ FREE (&buf);
}
/* imap_wordcasecmp: find word a in word list b */