From: Andrei Zmievski Date: Mon, 8 Jan 2007 18:01:16 +0000 (+0000) Subject: Let caller issue error. X-Git-Tag: RELEASE_1_0_0RC1~354 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c1c23f8f42f50627caeda44ac4dc0fd0a65244c8;p=php Let caller issue error. --- diff --git a/Zend/zend_unicode.c b/Zend/zend_unicode.c index 15649a2863..b4f0bcda37 100644 --- a/Zend/zend_unicode.c +++ b/Zend/zend_unicode.c @@ -365,11 +365,6 @@ ZEND_API void zend_convert_encodings(UConverter *target_conv, UConverter *source memset(buffer + converted, 0, null_size); /* NULL-terminate the output string */ *target = buffer; *target_len = converted; - - /* Report the conversion error */ - if (U_FAILURE(*status)) { - zend_error(E_NOTICE, "Error converting from codepage string to Unicode: %s", u_errorName(*status)); - } } /* }}} */