php_strip_tags_filter *inst = (php_strip_tags_filter *) thisfilter->abstract;
while (buckets_in->head) {
+ bucket = php_stream_bucket_make_writeable(buckets_in->head TSRMLS_CC);
+
if (bucket->is_unicode) {
/* Uh oh! */
return PSFS_ERR_FATAL;
}
- bucket = php_stream_bucket_make_writeable(buckets_in->head TSRMLS_CC);
consumed = bucket->buf.str.len;
bucket->buf.str.len = php_strip_tags(bucket->buf.str.val, bucket->buf.str.len, &(inst->state), (char *)inst->allowed_tags, inst->allowed_tags_len);