From f3df3df8737ace9f4431416fdd0d312cb0ee9cfd Mon Sep 17 00:00:00 2001 From: Jakub Zelenka Date: Sun, 21 Jun 2015 15:30:33 +0100 Subject: Fix bug #68546 (json_decode cannot access property started with \0) --- ext/json/php_json.h | 1 + 1 file changed, 1 insertion(+) (limited to 'ext/json/php_json.h') 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; -- cgit v1.2.1