summaryrefslogtreecommitdiff
path: root/ffserver.c
diff options
context:
space:
mode:
Diffstat (limited to 'ffserver.c')
-rw-r--r--ffserver.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ffserver.c b/ffserver.c
index 2de35ba0b9..fd7d3cba16 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -2217,7 +2217,8 @@ static int http_prepare_data(HTTPContext *c)
ffm file, so must wait for more data */
c->state = HTTPSTATE_WAIT_FEED;
return 1; /* state changed */
- } else if (ret == AVERROR(EAGAIN)) {
+ }
+ if (ret == AVERROR(EAGAIN)) {
/* input not ready, come back later */
return 0;
}