Browse Source

- Fixed possible memory leak

pull/502/head
Felipe Pena 12 years ago
parent
commit
aa4f9b322b
  1. 1
      ext/bz2/bz2_filter.c

1
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;
}

Loading…
Cancel
Save