Skip to content

Commit 045f46b

Browse files
committed
Remove old workaround obsoleted by GH-18973
1 parent 1a0f955 commit 045f46b

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

main/streams/filter.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,6 @@ PHPAPI void php_stream_bucket_prepend(php_stream_bucket_brigade *brigade, php_st
171171

172172
PHPAPI void php_stream_bucket_append(php_stream_bucket_brigade *brigade, php_stream_bucket *bucket)
173173
{
174-
/* TODO: this was added as a bad workaround for bug #35916 and should be removed in the future. */
175-
if (brigade->tail == bucket) {
176-
return;
177-
}
178-
179174
bucket->prev = brigade->tail;
180175
bucket->next = NULL;
181176

0 commit comments

Comments
 (0)