Browse Source

lavf/aviobuf: return EINVAL when reading from a write-only context.

Signed-off-by: Nicolas George <george@nsup.org>
tags/n4.0
Nicolas George Jan Ekström 8 years ago
parent
commit
158a79c31d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/aviobuf.c

+ 1
- 1
libavformat/aviobuf.c View File

@@ -529,7 +529,7 @@ static int read_packet_wrapper(AVIOContext *s, uint8_t *buf, int size)
int ret;

if (!s->read_packet)
return AVERROR_EOF;
return AVERROR(EINVAL);
ret = s->read_packet(s->opaque, buf, size);
#if FF_API_OLD_AVIO_EOF_0
if (!ret && !s->max_packet_size) {


Loading…
Cancel
Save