diff options
| author | Michael Wallner <mike@php.net> | 2013-08-27 14:01:59 +0200 |
|---|---|---|
| committer | Michael Wallner <mike@php.net> | 2013-08-27 14:01:59 +0200 |
| commit | d4b673a34c873a7d732507ce5f83385acff8a59c (patch) | |
| tree | faff9dc7f3739ca11f64a4c348b55cfbc4d35b7f /ext/soap | |
| parent | bb1f9d3826c968ce0c099598ded6f646b3da6429 (diff) | |
| download | php-git-d4b673a34c873a7d732507ce5f83385acff8a59c.tar.gz | |
fix ZTS build
Diffstat (limited to 'ext/soap')
| -rw-r--r-- | ext/soap/soap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/soap/soap.c b/ext/soap/soap.c index d10c17e218..c5900dc645 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -1580,7 +1580,7 @@ PHP_METHOD(SoapServer, handle) array_init_size(&filter_params, 1); add_assoc_long_ex(&filter_params, ZEND_STRS("window"), 0x2f); /* ANY WBITS */ - zf = php_stream_filter_create("zlib.inflate", &filter_params, 0); + zf = php_stream_filter_create("zlib.inflate", &filter_params, 0 TSRMLS_CC); zval_dtor(&filter_params); if (zf) { @@ -1595,10 +1595,10 @@ PHP_METHOD(SoapServer, handle) } } - doc_request = soap_xmlParseFile("php://input"); + doc_request = soap_xmlParseFile("php://input" TSRMLS_CC); if (zf) { - php_stream_filter_remove(zf, 1); + php_stream_filter_remove(zf, 1 TSRMLS_CC); } } else { zval_ptr_dtor(&retval); |
