diff options
author | Scott MacVicar <scottmac@php.net> | 2010-07-06 17:01:30 +0000 |
---|---|---|
committer | Scott MacVicar <scottmac@php.net> | 2010-07-06 17:01:30 +0000 |
commit | e1ce0a64ea4d4f33f9de736a8b7dfcaf391ee053 (patch) | |
tree | 55a439e90b5317231d5b9bdccc2073a8e13efda2 | |
parent | 336b5af34b91d64375010d3bf66a15512789ff60 (diff) | |
download | php-git-e1ce0a64ea4d4f33f9de736a8b7dfcaf391ee053.tar.gz |
Fix bug #52262 - Invalid UTF-8 documents don't set an error code when they fail to decode.
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | ext/json/json.c | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -1,6 +1,8 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? Jul 2010, PHP 5.3.3 RC3 +- Fixed bug #52262 (json_decode() shows no errors on invalid UTF-8). + (Scott) - Fixed bug #52240 (hash_copy() does not copy the HMAC key, causes wrong results and PHP crashes). (Felipe) - Fixed bug #52238 (Crash when an Exception occured in iterator_to_array). diff --git a/ext/json/json.c b/ext/json/json.c index 09e874040a..38fd3aacfa 100644 --- a/ext/json/json.c +++ b/ext/json/json.c @@ -500,6 +500,7 @@ PHP_JSON_API void php_json_decode(zval *return_value, char *str, int str_len, ze if (utf16) { efree(utf16); } + JSON_G(error_code) = PHP_JSON_ERROR_UTF8; RETURN_NULL(); } |