From 51856a76f87ecb24fe1385342be43610fb6c86e4 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Thu, 19 Mar 2015 11:36:01 +0300 Subject: [PATCH] Fixed bug #69152 --- ext/soap/soap.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ext/soap/soap.c b/ext/soap/soap.c index d460c1718f..41aa1ad892 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -924,6 +924,12 @@ PHP_METHOD(SoapFault, __toString) zend_call_function(&fci, NULL TSRMLS_CC); + convert_to_string(faultcode); + convert_to_string(faultstring); + convert_to_string(file); + convert_to_long(line); + convert_to_string(trace); + len = spprintf(&str, 0, "SoapFault exception: [%s] %s in %s:%ld\nStack trace:\n%s", Z_STRVAL_P(faultcode), Z_STRVAL_P(faultstring), Z_STRVAL_P(file), Z_LVAL_P(line), Z_STRLEN_P(trace) ? Z_STRVAL_P(trace) : "#0 {main}\n"); -- 2.50.1