From: Felix Fietkau Date: Sat, 19 Jan 2013 22:55:10 +0000 (+0100) Subject: do not relay empty chunks, they look like EOF in chunked encoding X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuhttpd.git;a=commitdiff_plain;h=56278d4af64256e703a6c4cf3d854aac689c391c;hp=3560e89406c81814254bdb45db19498387265cb7 do not relay empty chunks, they look like EOF in chunked encoding Signed-off-by: Felix Fietkau --- diff --git a/relay.c b/relay.c index 5de5cb4..ba6b95a 100644 --- a/relay.c +++ b/relay.c @@ -130,6 +130,9 @@ static void relay_read_cb(struct ustream *s, int bytes) } buf = ustream_get_read_buf(s, &len); + if (!buf || !len) + return; + uh_chunk_write(cl, buf, len); ustream_consume(s, len); }