summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXinchen Hui <laruence@php.net>2015-04-15 10:38:55 +0800
committerFerenc Kovacs <tyrael@php.net>2015-04-15 19:43:40 +0200
commitbf393c89d8d6f31264598d770a96cce446fb9a81 (patch)
treed8ab0020ef59dd47262e2ab8c8cf0cba00ed4025
parentf251b16fccaa33c5ceb03811cc20b8b25737a1ee (diff)
downloadphp-git-bf393c89d8d6f31264598d770a96cce446fb9a81.tar.gz
Fixed res leak
-rw-r--r--Zend/zend_exceptions.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c
index f163495906..78d6e32276 100644
--- a/Zend/zend_exceptions.c
+++ b/Zend/zend_exceptions.c
@@ -587,13 +587,14 @@ ZEND_METHOD(exception, getTraceAsString)
DEFAULT_0_PARAMS;
- res = estrdup("");
- 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;
}
+
+ res = estrdup("");
+ str = &res;
+
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);