File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1580,7 +1580,7 @@ PHP_METHOD(SoapServer, handle)
1580
1580
array_init_size (& filter_params , 1 );
1581
1581
add_assoc_long_ex (& filter_params , ZEND_STRS ("window" ), 0x2f ); /* ANY WBITS */
1582
1582
1583
- zf = php_stream_filter_create ("zlib.inflate" , & filter_params , 0 );
1583
+ zf = php_stream_filter_create ("zlib.inflate" , & filter_params , 0 TSRMLS_CC );
1584
1584
zval_dtor (& filter_params );
1585
1585
1586
1586
if (zf ) {
@@ -1595,10 +1595,10 @@ PHP_METHOD(SoapServer, handle)
1595
1595
}
1596
1596
}
1597
1597
1598
- doc_request = soap_xmlParseFile ("php://input" );
1598
+ doc_request = soap_xmlParseFile ("php://input" TSRMLS_CC );
1599
1599
1600
1600
if (zf ) {
1601
- php_stream_filter_remove (zf , 1 );
1601
+ php_stream_filter_remove (zf , 1 TSRMLS_CC );
1602
1602
}
1603
1603
} else {
1604
1604
zval_ptr_dtor (& retval );
You can’t perform that action at this time.
0 commit comments