Browse Source

return error code if error happens

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.9
Maksym Veremeyenko Michael Niedermayer 14 years ago
parent
commit
4052bf69ac
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      libavformat/file.c

+ 4
- 2
libavformat/file.c View File

@@ -37,13 +37,15 @@
static int file_read(URLContext *h, unsigned char *buf, int size)
{
int fd = (intptr_t) h->priv_data;
return read(fd, buf, size);
int r = read(fd, buf, size);
return (-1 == r)?AVERROR(errno):r;
}

static int file_write(URLContext *h, const unsigned char *buf, int size)
{
int fd = (intptr_t) h->priv_data;
return write(fd, buf, size);
int r = write(fd, buf, size);
return (-1 == r)?AVERROR(errno):r;
}

static int file_get_handle(URLContext *h)


Loading…
Cancel
Save