Commit 4ed5ac50 authored by Luca Barbato's avatar Luca Barbato

file: return proper error on seek failures

parent 2568646a
......@@ -121,12 +121,18 @@ static int file_open(URLContext *h, const char *filename, int flags)
static int64_t file_seek(URLContext *h, int64_t pos, int whence)
{
FileContext *c = h->priv_data;
int ret;
if (whence == AVSEEK_SIZE) {
struct stat st;
int ret = fstat(c->fd, &st);
ret = fstat(c->fd, &st);
return ret < 0 ? AVERROR(errno) : st.st_size;
}
return lseek(c->fd, pos, whence);
ret = lseek(c->fd, pos, whence);
return ret < 0 ? AVERROR(errno) : ret;
}
static int file_close(URLContext *h)
......
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