rtmphttp: Check for both 0 and AVERROR_EOF
authorValeriy Argunov <hzdbyte@gmail.com>
Fri, 15 Nov 2013 17:33:43 +0000 (00:33 +0700)
committerMartin Storsjö <martin@martin.st>
Mon, 18 Nov 2013 10:36:32 +0000 (12:36 +0200)
This makes RTMPT work again - it was broken by 5d876be87a.

Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/rtmphttp.c

index 89a6614..34c68fb 100644 (file)
@@ -113,7 +113,7 @@ static int rtmp_http_read(URLContext *h, uint8_t *buf, int size)
         if (ret < 0 && ret != AVERROR_EOF)
             return ret;
 
-        if (ret == AVERROR_EOF) {
+        if (!ret || ret == AVERROR_EOF) {
             if (rt->finishing) {
                 /* Do not send new requests when the client wants to
                  * close the connection. */
@@ -227,7 +227,7 @@ static int rtmp_http_open(URLContext *h, const char *uri, int flags)
     /* read the server reply which contains a unique ID */
     for (;;) {
         ret = ffurl_read(rt->stream, rt->client_id + off, sizeof(rt->client_id) - off);
-        if (ret == AVERROR_EOF)
+        if (!ret || ret == AVERROR_EOF)
             break;
         if (ret < 0)
             goto fail;