We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf7f507 commit f69a5c5Copy full SHA for f69a5c5
ext/bz2/bz2_filter.c
@@ -215,15 +215,13 @@ static php_stream_filter_status_t php_bz2_compress_filter(
215
size_t consumed = 0;
216
int status;
217
php_stream_filter_status_t exit_status = PSFS_FEED_ME;
218
- bz_stream *streamp;
219
220
if (!thisfilter || !thisfilter->abstract) {
221
/* Should never happen */
222
return PSFS_ERR_FATAL;
223
}
224
225
data = (php_bz2_filter_data *)(thisfilter->abstract);
226
- streamp = &(data->strm);
227
228
while (buckets_in->head) {
229
size_t bin = 0, desired;
0 commit comments