summaryrefslogtreecommitdiff
path: root/ext/json/json_encoder.c
diff options
context:
space:
mode:
authorJulien Pauli <jpauli@php.net>2016-09-19 16:12:33 +0200
committerJulien Pauli <jpauli@php.net>2016-09-19 16:42:53 +0200
commit7c7dc62c11da6e1e10452f96c1c8b823e5bb468c (patch)
tree807be2631dfc68385c274c327e3daccf44ff22c9 /ext/json/json_encoder.c
parentd8d409135777091302d7c8f905f3f093d95c7b0b (diff)
parentc4f3ea10e49a2a44e767ce38c57329934a6bbaba (diff)
downloadphp-git-7c7dc62c11da6e1e10452f96c1c8b823e5bb468c.tar.gz
Merge branch 'PHP-7.0' into PHP-7.1
* PHP-7.0: Do not wrap user exception in case of custom JSON serialization Conflicts: ext/json/json_encoder.c
Diffstat (limited to 'ext/json/json_encoder.c')
-rw-r--r--ext/json/json_encoder.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/json/json_encoder.c b/ext/json/json_encoder.c
index 8fd2f23dff..f94674831a 100644
--- a/ext/json/json_encoder.c
+++ b/ext/json/json_encoder.c
@@ -487,7 +487,9 @@ static int php_json_encode_serializable_object(smart_str *buf, zval *val, int op
origin_error_code = JSON_G(error_code);
if (FAILURE == call_user_function_ex(EG(function_table), val, &fname, &retval, 0, NULL, 1, NULL) || Z_TYPE(retval) == IS_UNDEF) {
- zend_throw_exception_ex(NULL, 0, "Failed calling %s::jsonSerialize()", ZSTR_VAL(ce->name));
+ if (!EG(exception)) {
+ zend_throw_exception_ex(NULL, 0, "Failed calling %s::jsonSerialize()", ZSTR_VAL(ce->name));
+ }
zval_ptr_dtor(&fname);
if (options & PHP_JSON_PARTIAL_OUTPUT_ON_ERROR) {