diff options
author | Stanislav Malyshev <stas@php.net> | 2015-04-05 17:30:59 -0700 |
---|---|---|
committer | Julien Pauli <jpauli@php.net> | 2015-04-15 10:11:43 +0200 |
commit | 1da9156e60d3d02cc4661244e40d95d5eb76b881 (patch) | |
tree | 211f0fb55ea55b0fa13aaf7facfea1dac6307600 /Zend/zend_exceptions.c | |
parent | 52b93f0cfd3cba7ff98cc5198df6ca4f23865f80 (diff) | |
download | php-git-1da9156e60d3d02cc4661244e40d95d5eb76b881.tar.gz |
More fixes for bug #69152
Diffstat (limited to 'Zend/zend_exceptions.c')
-rw-r--r-- | Zend/zend_exceptions.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c index 3d73e92c50..f163495906 100644 --- a/Zend/zend_exceptions.c +++ b/Zend/zend_exceptions.c @@ -591,6 +591,9 @@ ZEND_METHOD(exception, getTraceAsString) str = &res; trace = zend_read_property(default_exception_ce, getThis(), "trace", sizeof("trace")-1, 1 TSRMLS_CC); + if(Z_TYPE_P(trace) != IS_ARRAY) { + RETURN_FALSE; + } zend_hash_apply_with_arguments(Z_ARRVAL_P(trace) TSRMLS_CC, (apply_func_args_t)_build_trace_string, 3, str, len, &num); s_tmp = emalloc(1 + MAX_LENGTH_OF_LONG + 7 + 1); |