X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_filter.c;h=9dd0827d016b935cd5ec8c855d98433c6f9b2258;hp=1a57399071f0dbb79bca68245c4bed71c7ab2c91;hb=a07b79b1871054ca17e48b69445b4dc201f24662;hpb=4d708279b6956fc95b253ddc88671fb2f0e5aa39 diff --git a/php_http_filter.c b/php_http_filter.c index 1a57399..9dd0827 100644 --- a/php_http_filter.c +++ b/php_http_filter.c @@ -297,7 +297,7 @@ static PHP_HTTP_FILTER_FUNCTION(zlib) } if (ptr->buflen) { - php_http_encoding_stream_update(buffer, ptr->buf, ptr->buflen, &encoded, &encoded_len TSRMLS_CC); + php_http_encoding_stream_update(buffer, ptr->buf, ptr->buflen, &encoded, &encoded_len); if (encoded) { if (encoded_len) { out_avail = 1; @@ -317,7 +317,7 @@ static PHP_HTTP_FILTER_FUNCTION(zlib) char *encoded = NULL; size_t encoded_len = 0; - php_http_encoding_stream_flush(buffer, &encoded, &encoded_len TSRMLS_CC); + php_http_encoding_stream_flush(buffer, &encoded, &encoded_len); if (encoded) { if (encoded_len) { out_avail = 1; @@ -331,7 +331,7 @@ static PHP_HTTP_FILTER_FUNCTION(zlib) char *encoded = NULL; size_t encoded_len = 0; - php_http_encoding_stream_finish(buffer, &encoded, &encoded_len TSRMLS_CC); + php_http_encoding_stream_finish(buffer, &encoded, &encoded_len); if (encoded) { if (encoded_len) { out_avail = 1; @@ -346,7 +346,7 @@ static PHP_HTTP_FILTER_FUNCTION(zlib) static PHP_HTTP_FILTER_DESTRUCTOR(zlib) { PHP_HTTP_FILTER_BUFFER(zlib) *buffer = (PHP_HTTP_FILTER_BUFFER(zlib) *) this->abstract; - php_http_encoding_stream_free(&buffer TSRMLS_CC); + php_http_encoding_stream_free(&buffer); } static PHP_HTTP_FILTER_OPS(deflate) = { @@ -387,7 +387,7 @@ static php_stream_filter *http_filter_create(const char *name, zval *params, int if ((b = php_http_encoding_stream_init(NULL, php_http_encoding_stream_get_inflate_ops(), flags TSRMLS_CC))) { if (!(f = php_stream_filter_alloc(&PHP_HTTP_FILTER_OP(inflate), b, p))) { - php_http_encoding_stream_free(&b TSRMLS_CC); + php_http_encoding_stream_free(&b); } } } else @@ -414,7 +414,7 @@ static php_stream_filter *http_filter_create(const char *name, zval *params, int } if ((b = php_http_encoding_stream_init(NULL, php_http_encoding_stream_get_deflate_ops(), flags TSRMLS_CC))) { if (!(f = php_stream_filter_alloc(&PHP_HTTP_FILTER_OP(deflate), b, p))) { - php_http_encoding_stream_free(&b TSRMLS_CC); + php_http_encoding_stream_free(&b); } } }