From c149f67e9b5b4e3b9061e271e75d441bacfa81c6 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 6 Dec 2014 17:12:49 +0100 Subject: avformat/apetag: More completely check avio_get_str() return value This is not needed but its more proper to check the return value Fixes CID1041122 Signed-off-by: Michael Niedermayer --- libavformat/apetag.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'libavformat/apetag.c') diff --git a/libavformat/apetag.c b/libavformat/apetag.c index c8d1bdca5a..258bdaa1b6 100644 --- a/libavformat/apetag.c +++ b/libavformat/apetag.c @@ -62,15 +62,19 @@ static int ape_tag_read_field(AVFormatContext *s) if (flags & APE_TAG_FLAG_IS_BINARY) { uint8_t filename[1024]; enum AVCodecID id; + int ret; AVStream *st = avformat_new_stream(s, NULL); if (!st) return AVERROR(ENOMEM); - size -= avio_get_str(pb, size, filename, sizeof(filename)); - if (size <= 0) { + ret = avio_get_str(pb, size, filename, sizeof(filename)); + if (ret < 0) + return ret; + if (size <= ret) { av_log(s, AV_LOG_WARNING, "Skipping binary tag '%s'.\n", key); return 0; } + size -= ret; av_dict_set(&st->metadata, key, filename, 0); -- cgit v1.2.3