From a8a3701ba6beea58c552780fa06e9df60a606cdb Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Wed, 30 Aug 2006 16:12:43 +0000 Subject: [PATCH] fix leak --- ext/iconv/iconv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/iconv/iconv.c b/ext/iconv/iconv.c index 40573f47f5..a5cc9b31b0 100644 --- a/ext/iconv/iconv.c +++ b/ext/iconv/iconv.c @@ -2278,7 +2278,7 @@ PHP_FUNCTION(ob_iconv_handler) if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zl", &zv_string, &status) == FAILURE) return; - convert_to_string_ex(&zv_string); + convert_to_string(zv_string); if (SG(sapi_headers).mimetype && strncasecmp(SG(sapi_headers).mimetype, "text/", 5) == 0) { -- 2.50.1