mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
More fixes for bug #69152
This commit is contained in:
parent
4435b9142f
commit
a894a8155f
2 changed files with 19 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue