summaryrefslogtreecommitdiffstats
path: root/imap/utf7.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2003-09-19 13:05:13 +0000
committerThomas Roessler <roessler@does-not-exist.org>2003-09-19 13:05:13 +0000
commit16477bf306f2e4f5b5bd58cbb541e102a31f186a (patch)
tree5bbed6db9b5f16f5718977170271a02ab5e36176 /imap/utf7.c
parenta370002a01f443095ae23da6515790d467e4bebf (diff)
Fix remaining (void **) casts.
Diffstat (limited to 'imap/utf7.c')
-rw-r--r--imap/utf7.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/imap/utf7.c b/imap/utf7.c
index f792cd48..b6781a82 100644
--- a/imap/utf7.c
+++ b/imap/utf7.c
@@ -124,7 +124,7 @@ static char *utf7_to_utf8 (const char *u7, size_t u7len, char **u8,
if (u8len)
*u8len = p - buf;
- safe_realloc ((void **) &buf, p - buf);
+ safe_realloc (&buf, p - buf);
if (u8)
*u8 = buf;
return buf;
@@ -238,7 +238,7 @@ static char *utf8_to_utf7 (const char *u8, size_t u8len, char **u7,
*p++ = '\0';
if (u7len)
*u7len = p - buf;
- safe_realloc ((void **) &buf, p - buf);
+ safe_realloc (&buf, p - buf);
if (u7) *u7 = buf;
return buf;