summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Pena <felipensp@gmail.com>2015-02-16 13:07:26 -0200
committerFelipe Pena <felipensp@gmail.com>2015-02-16 13:07:26 -0200
commite08bef442c63a3e0f9eac43d8f5e09213347d3ca (patch)
treeba17e99267dc798a5aef3d1bca6827a2c7082030
parent5b6269a2531137cdb7c32f62bd47caa82b9c6bb5 (diff)
downloadphp-git-e08bef442c63a3e0f9eac43d8f5e09213347d3ca.tar.gz
- Fixed bug #67427 (SoapServer cannot handle large messages) patch by: brandt at docoloc dot de
-rw-r--r--ext/soap/php_xml.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/soap/php_xml.c b/ext/soap/php_xml.c
index f7c8fd51e5..bf30ab40aa 100644
--- a/ext/soap/php_xml.c
+++ b/ext/soap/php_xml.c
@@ -100,6 +100,9 @@ xmlDocPtr soap_xmlParseFile(const char *filename TSRMLS_DC)
ctxt->sax->warning = NULL;
ctxt->sax->error = NULL;
/*ctxt->sax->fatalError = NULL;*/
+#if LIBXML_VERSION >= 20703
+ ctxt->options |= XML_PARSE_HUGE;
+#endif
old = php_libxml_disable_entity_loader(1 TSRMLS_CC);
xmlParseDocument(ctxt);
php_libxml_disable_entity_loader(old TSRMLS_CC);