diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2007-12-16 17:21:44 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2007-12-16 17:21:44 +0000 |
commit | b5ccc0ad913021210fe479e90afafc53c32f3be6 (patch) | |
tree | 5056dbf3491868cf2a5fe39ac2954ff13222516c /ext/bz2 | |
parent | 6711417e88e0321c0f250668465af0f47f2170d4 (diff) | |
download | php-git-b5ccc0ad913021210fe479e90afafc53c32f3be6.tar.gz |
Fixed bug #43589 (a possible infinite loop in bz2_filter.c)
# Patch by Greg Beaver
Diffstat (limited to 'ext/bz2')
-rw-r--r-- | ext/bz2/bz2_filter.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/bz2/bz2_filter.c b/ext/bz2/bz2_filter.c index 1eef1c1c40..fc447e3e83 100644 --- a/ext/bz2/bz2_filter.c +++ b/ext/bz2/bz2_filter.c @@ -139,6 +139,8 @@ static php_stream_filter_status_t php_bz2_decompress_filter( data->strm.avail_out = data->outbuf_len; data->strm.next_out = data->outbuf; exit_status = PSFS_PASS_ON; + } else if (status == BZ_OK) { + break; } } } |