summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/wavdec.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/wavdec.c b/libavformat/wavdec.c
index 2814466897..0c6629b157 100644
--- a/libavformat/wavdec.c
+++ b/libavformat/wavdec.c
@@ -767,6 +767,8 @@ smv_out:
goto smv_retry;
return AVERROR_EOF;
}
+ if (INT64_MAX - left < avio_tell(s->pb))
+ return AVERROR_INVALIDDATA;
wav->data_end = avio_tell(s->pb) + left;
}