summaryrefslogtreecommitdiffstats
path: root/libavformat/rpl.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2015-02-05 14:44:43 +0000
committerPaul B Mahol <onemda@gmail.com>2015-02-06 16:07:16 +0000
commitf968166439e4d4fc9f352ea20b8922d42ca5c7b1 (patch)
treeccb16638138c3255167b78ff77fc8757255a0bff /libavformat/rpl.c
parent6fafc62b0bd0e206deb77a7aabbf3a370ad80789 (diff)
downloadffmpeg-streaming-f968166439e4d4fc9f352ea20b8922d42ca5c7b1.zip
ffmpeg-streaming-f968166439e4d4fc9f352ea20b8922d42ca5c7b1.tar.gz
avformat/rpl: check av_get_packet() for failure
Also make ret signed as it should be from start. Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat/rpl.c')
-rw-r--r--libavformat/rpl.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/libavformat/rpl.c b/libavformat/rpl.c
index c1229e8..04cb917 100644
--- a/libavformat/rpl.c
+++ b/libavformat/rpl.c
@@ -278,7 +278,7 @@ static int rpl_read_packet(AVFormatContext *s, AVPacket *pkt)
AVIOContext *pb = s->pb;
AVStream* stream;
AVIndexEntry* index_entry;
- uint32_t ret;
+ int ret;
if (rpl->chunk_part == s->nb_streams) {
rpl->chunk_number++;
@@ -308,6 +308,8 @@ static int rpl_read_packet(AVFormatContext *s, AVPacket *pkt)
return AVERROR(EIO);
ret = av_get_packet(pb, pkt, frame_size);
+ if (ret < 0)
+ return ret;
if (ret != frame_size) {
av_free_packet(pkt);
return AVERROR(EIO);
@@ -323,6 +325,8 @@ static int rpl_read_packet(AVFormatContext *s, AVPacket *pkt)
}
} else {
ret = av_get_packet(pb, pkt, index_entry->size);
+ if (ret < 0)
+ return ret;
if (ret != index_entry->size) {
av_free_packet(pkt);
return AVERROR(EIO);
OpenPOWER on IntegriCloud