From 2851ce7edb3247233b0d07e6d26d5a2ed0478a56 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Fri, 31 May 2013 11:18:26 +0200 Subject: [PATCH] ustream: only report stream eof once via state_change callback Signed-off-by: Felix Fietkau --- ustream-fd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ustream-fd.c b/ustream-fd.c index c8f0ef9..4abb530 100644 --- a/ustream-fd.c +++ b/ustream-fd.c @@ -66,8 +66,9 @@ static void ustream_fd_read_pending(struct ustream_fd *sf, bool *more) } if (!len) { + if (!s->eof) + ustream_state_change(s); s->eof = true; - ustream_state_change(s); ustream_fd_set_uloop(s, false); return; } -- 2.11.0