summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/imap/php_imap.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c
index 32461c91ee..05a0057341 100644
--- a/ext/imap/php_imap.c
+++ b/ext/imap/php_imap.c
@@ -1975,7 +1975,6 @@ PHP_FUNCTION(imap_base64)
}
convert_to_string_ex(text);
- object_init(return_value);
decode = (char *) rfc822_base64((unsigned char *) Z_STRVAL_PP(text), Z_STRLEN_PP(text), &newlength);
RETVAL_STRINGL(decode, newlength, 1);
@@ -1997,7 +1996,6 @@ PHP_FUNCTION(imap_qprint)
}
convert_to_string_ex(text);
- object_init(return_value);
decode = (char *) rfc822_qprint((unsigned char *) Z_STRVAL_PP(text), Z_STRLEN_PP(text), &newlength);
RETVAL_STRINGL(decode, newlength, 1);
@@ -2019,7 +2017,6 @@ PHP_FUNCTION(imap_8bit)
}
convert_to_string_ex(text);
- object_init(return_value);
decode = (char *) rfc822_8bit((unsigned char *) Z_STRVAL_PP(text), Z_STRLEN_PP(text), &newlength);
RETVAL_STRINGL(decode, newlength, 1);