summaryrefslogtreecommitdiff
path: root/ext/soap
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-01-14 17:42:28 +0100
committerAnatol Belski <ab@php.net>2016-01-14 17:42:28 +0100
commit4308c868f94df1f2b99e80038ba5ea1076d919a7 (patch)
treec81639fd1096b66c7fdc8cb7af4f5e8b3133f3b7 /ext/soap
parent1f513805dccdd1d10a8e462c16422bdfc2c795ba (diff)
downloadphp-git-4308c868f94df1f2b99e80038ba5ea1076d919a7.tar.gz
Fixed bug #70979 crash with bad soap request
The error handler is overloaded with the SOAP one. However the SOAP handler eventually wants to access some of its globals. This won't work as long as the SOAP globals aren't initialized. The use case is when an error is thrown before RINIT went through. As the call order is arbitrary, the safest is to wait when all the modules called their RINIT.
Diffstat (limited to 'ext/soap')
-rw-r--r--ext/soap/soap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soap/soap.c b/ext/soap/soap.c
index 7c84bc9adb..f0e26bf19d 100644
--- a/ext/soap/soap.c
+++ b/ext/soap/soap.c
@@ -2135,7 +2135,7 @@ static void soap_error_handler(int error_num, const char *error_filename, const
_old_http_response_code = SG(sapi_headers).http_response_code;
_old_http_status_line = SG(sapi_headers).http_status_line;
- if (!SOAP_GLOBAL(use_soap_error_handler) || !EG(objects_store).object_buckets) {
+ if (!PG(modules_activated) || !SOAP_GLOBAL(use_soap_error_handler) || !EG(objects_store).object_buckets) {
call_old_error_handler(error_num, error_filename, error_lineno, format, args);
return;
}