summaryrefslogtreecommitdiffstats
path: root/php-5.5.0-wip.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2013-02-28 16:05:19 +0100
committerRemi Collet <fedora@famillecollet.com>2013-02-28 16:05:19 +0100
commit6813f3f5993914d8cf1c229ddf4d4e5fbc60b106 (patch)
treed21f7ca359663e3332d68ec4987c5f899a63c0b0 /php-5.5.0-wip.patch
parent97c48cdcb37a6300a5eedc96f09f44bb5222b967 (diff)
php-5.5.0-0.16.201302281430
Diffstat (limited to 'php-5.5.0-wip.patch')
-rw-r--r--php-5.5.0-wip.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/php-5.5.0-wip.patch b/php-5.5.0-wip.patch
deleted file mode 100644
index 22be618..0000000
--- a/php-5.5.0-wip.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-X-Git-Url: http://git.php.net/?p=php-src.git;a=blobdiff_plain;f=ext%2Fsoap%2Fphp_xml.c;h=939385557df326205e62d7d4ae343da1fa6ab02f;hp=a74ec02f435cba9b951d2f3cdd2421acd3a3663b;hb=1e9bc5677505585173ac105c997a09c095f34d1d;hpb=b5d267aa95aec1e89dc34f0bcc3c46576354cd26
-
-diff --git a/ext/soap/php_xml.c b/ext/soap/php_xml.c
-index a74ec02..9393855 100644
---- a/ext/soap/php_xml.c
-+++ b/ext/soap/php_xml.c
-@@ -100,9 +100,9 @@ xmlDocPtr soap_xmlParseFile(const char *filename TSRMLS_DC)
- ctxt->sax->warning = NULL;
- ctxt->sax->error = NULL;
- /*ctxt->sax->fatalError = NULL;*/
-- old = php_libxml_disable_entity_loader(1);
-+ old = php_libxml_disable_entity_loader(1 TSRMLS_CC);
- xmlParseDocument(ctxt);
-- php_libxml_disable_entity_loader(old);
-+ php_libxml_disable_entity_loader(old TSRMLS_CC);
- if (ctxt->wellFormed) {
- ret = ctxt->myDoc;
- if (ret->URL == NULL && ctxt->directory != NULL) {
-@@ -133,6 +133,8 @@ xmlDocPtr soap_xmlParseMemory(const void *buf, size_t buf_size)
- xmlParserCtxtPtr ctxt = NULL;
- xmlDocPtr ret;
-
-+ TSRMLS_FETCH();
-+
- /*
- xmlInitParser();
- */
-@@ -148,9 +150,9 @@ xmlDocPtr soap_xmlParseMemory(const void *buf, size_t buf_size)
- #if LIBXML_VERSION >= 20703
- ctxt->options |= XML_PARSE_HUGE;
- #endif
-- old = php_libxml_disable_entity_loader(1);
-+ old = php_libxml_disable_entity_loader(1 TSRMLS_CC);
- xmlParseDocument(ctxt);
-- php_libxml_disable_entity_loader(old);
-+ php_libxml_disable_entity_loader(old TSRMLS_CC);
- if (ctxt->wellFormed) {
- ret = ctxt->myDoc;
- if (ret->URL == NULL && ctxt->directory != NULL) {