From e05f7ed5436207f4a55f1978b223c7f8bc82af42 Mon Sep 17 00:00:00 2001 From: Sean McGovern Date: Thu, 27 Aug 2015 00:04:15 -0400 Subject: file: properly forward errors from file_read() and file_write() Bug-Id: 881 CC: libav-stable@libav.org Signed-off-by: Luca Barbato --- libavformat/file.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'libavformat/file.c') diff --git a/libavformat/file.c b/libavformat/file.c index 2837e9f150..b54db9aea6 100644 --- a/libavformat/file.c +++ b/libavformat/file.c @@ -59,13 +59,15 @@ static const AVClass file_class = { static int file_read(URLContext *h, unsigned char *buf, int size) { FileContext *c = h->priv_data; - return read(c->fd, buf, size); + int ret = read(c->fd, buf, size); + return (ret == -1) ? AVERROR(errno) : ret; } static int file_write(URLContext *h, const unsigned char *buf, int size) { FileContext *c = h->priv_data; - return write(c->fd, buf, size); + int ret = write(c->fd, buf, size); + return (ret == -1) ? AVERROR(errno) : ret; } static int file_get_handle(URLContext *h) -- cgit v1.2.3