Commit dac8369c authored by mstorsjo's avatar mstorsjo

Make sure the http protocol handler returns errors if a delayed open had failed


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@23548 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b09ec0b8
......@@ -371,6 +371,8 @@ static int http_read(URLContext *h, uint8_t *buf, int size)
if (ret != 0)
return ret;
}
if (!s->hd)
return AVERROR(EIO);
/* A size of zero can be used to force
* initializaton of the connection. */
......@@ -429,6 +431,8 @@ static int http_write(URLContext *h, const uint8_t *buf, int size)
if (ret != 0)
return ret;
}
if (!s->hd)
return AVERROR(EIO);
if (s->chunksize == -1) {
/* headers are sent without any special encoding */
......@@ -485,6 +489,8 @@ static int64_t http_seek(URLContext *h, int64_t off, int whence)
if (ret != 0)
return ret;
}
if (!s->hd)
return AVERROR(EIO);
if (whence == AVSEEK_SIZE)
return s->filesize;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment