diff options
author | Ondřej Surý <ondrej@sury.org> | 2013-11-21 09:50:14 +0100 |
---|---|---|
committer | Ondřej Surý <ondrej@sury.org> | 2013-11-21 09:50:14 +0100 |
commit | 0d7d3241164b4769b93867da2e8adb724ae17950 (patch) | |
tree | 18848ffcc5f7d70c56cd890352f518b60af11ea1 /ext/bz2 | |
parent | 3f2474550cbf299d8a7df34988ece052a0401414 (diff) | |
download | php-0d7d3241164b4769b93867da2e8adb724ae17950.tar.gz |
New upstream version 5.5.6+dfsgupstream/5.5.6+dfsg
Diffstat (limited to 'ext/bz2')
-rw-r--r-- | ext/bz2/bz2_filter.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/bz2/bz2_filter.c b/ext/bz2/bz2_filter.c index 335600232..1e7837b09 100644 --- a/ext/bz2/bz2_filter.c +++ b/ext/bz2/bz2_filter.c @@ -97,6 +97,7 @@ static php_stream_filter_status_t php_bz2_decompress_filter( status = BZ2_bzDecompressInit(streamp, 0, data->small_footprint); if (BZ_OK != status) { + php_stream_bucket_delref(bucket TSRMLS_CC); return PSFS_ERR_FATAL; } |