summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/riffdec.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavformat/riffdec.c b/libavformat/riffdec.c
index a2bfb44719..eebd8ed230 100644
--- a/libavformat/riffdec.c
+++ b/libavformat/riffdec.c
@@ -87,8 +87,10 @@ int ff_get_wav_header(AVIOContext *pb, AVCodecContext *codec, int size, int big_
{
int id;
- if (size < 14)
+ if (size < 14) {
avpriv_request_sample(codec, "wav header size < 14");
+ return AVERROR_INVALIDDATA;
+ }
codec->codec_type = AVMEDIA_TYPE_AUDIO;
if (!big_endian) {