Skip to content

Commit d4b673a

Browse files
committed
fix ZTS build
1 parent bb1f9d3 commit d4b673a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/soap/soap.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1580,7 +1580,7 @@ PHP_METHOD(SoapServer, handle)
15801580
array_init_size(&filter_params, 1);
15811581
add_assoc_long_ex(&filter_params, ZEND_STRS("window"), 0x2f); /* ANY WBITS */
15821582

1583-
zf = php_stream_filter_create("zlib.inflate", &filter_params, 0);
1583+
zf = php_stream_filter_create("zlib.inflate", &filter_params, 0 TSRMLS_CC);
15841584
zval_dtor(&filter_params);
15851585

15861586
if (zf) {
@@ -1595,10 +1595,10 @@ PHP_METHOD(SoapServer, handle)
15951595
}
15961596
}
15971597

1598-
doc_request = soap_xmlParseFile("php://input");
1598+
doc_request = soap_xmlParseFile("php://input" TSRMLS_CC);
15991599

16001600
if (zf) {
1601-
php_stream_filter_remove(zf, 1);
1601+
php_stream_filter_remove(zf, 1 TSRMLS_CC);
16021602
}
16031603
} else {
16041604
zval_ptr_dtor(&retval);

0 commit comments

Comments
 (0)