2
0
Fork 0

Fix sending endless "FCGI_STDIN" closed events

personal/stbuehler/wip
Stefan Bühler 2009-01-09 21:21:18 +01:00
parent 31acd354a7
commit 00869413ee
1 changed files with 2 additions and 1 deletions

View File

@ -228,7 +228,8 @@ static void stream_send_chunks(chunkqueue *out, guint8 type, guint16 requestid,
chunkqueue_append_mem(out, __padding, padlen);
}
if (in->is_closed) {
if (in->is_closed && !out->is_closed) {
out->is_closed = TRUE;
stream_send_fcgi_record(out, type, requestid, 0);
}
}