summaryrefslogtreecommitdiff
path: root/libavformat/wavarc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2023-02-18 23:03:37 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2023-02-23 23:17:09 +0100
commit2df271c78cd4b7d481a2d34abb71a2450b43c7e2 (patch)
tree2621de8e0444a594709e186ae1fef34148e36668 /libavformat/wavarc.c
parent8ead0ae68eb64ad325efafd686c434727f3d666a (diff)
avformat/wavarc: Check if extradata has been fully read
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/wavarc.c')
-rw-r--r--libavformat/wavarc.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libavformat/wavarc.c b/libavformat/wavarc.c
index 208b723716..2b5d1b99eb 100644
--- a/libavformat/wavarc.c
+++ b/libavformat/wavarc.c
@@ -22,6 +22,7 @@
#include "libavutil/channel_layout.h"
#include "libavutil/intreadwrite.h"
#include "avformat.h"
+#include "avio_internal.h"
#include "demux.h"
#include "internal.h"
@@ -84,7 +85,9 @@ static int wavarc_read_header(AVFormatContext *s)
if (ret < 0)
return ret;
memcpy(par->extradata, data, sizeof(data));
- avio_read(pb, par->extradata + sizeof(data), fmt_len);
+ ret = ffio_read_size(pb, par->extradata + sizeof(data), fmt_len);
+ if (ret < 0)
+ return ret;
par->codec_type = AVMEDIA_TYPE_AUDIO;
par->codec_id = AV_CODEC_ID_WAVARC;