diff options
author | Jakub Zelenka <bukka@php.net> | 2015-06-21 15:30:33 +0100 |
---|---|---|
committer | Jakub Zelenka <bukka@php.net> | 2015-06-21 15:30:33 +0100 |
commit | f3df3df8737ace9f4431416fdd0d312cb0ee9cfd (patch) | |
tree | 4d1031a3f6156ea1a83c94e39018118077f87d59 /ext/json/php_json.h | |
parent | 115e9288bbd28f7ad525ebcc0053908464be5c95 (diff) | |
download | php-git-f3df3df8737ace9f4431416fdd0d312cb0ee9cfd.tar.gz |
Fix bug #68546 (json_decode cannot access property started with \0)
Diffstat (limited to 'ext/json/php_json.h')
-rw-r--r-- | ext/json/php_json.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/json/php_json.h b/ext/json/php_json.h index 54d94da498..c47bc0f401 100644 --- a/ext/json/php_json.h +++ b/ext/json/php_json.h @@ -51,6 +51,7 @@ typedef enum { PHP_JSON_ERROR_RECURSION, PHP_JSON_ERROR_INF_OR_NAN, PHP_JSON_ERROR_UNSUPPORTED_TYPE, + PHP_JSON_ERROR_INVALID_PROPERTY_NAME, PHP_JSON_ERROR_UTF16 } php_json_error_code; |