diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-06-09 02:16:54 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-06-16 20:32:39 +0200 |
commit | e77ddd31a8e14bcf5eccd6008d866ae90b4b0d4c (patch) | |
tree | 1b39a9987346ec396c436b43e08869f8c380a047 /libavcodec/shorten.c | |
parent | 18f09524f72ccc56273859fceb2c7cf1c7b15c78 (diff) | |
download | ffmpeg-e77ddd31a8e14bcf5eccd6008d866ae90b4b0d4c.tar.gz |
avcodec/shorten: Sanity check maxnlpc
Fixes OOM
Fixes: 2131/clusterfuzz-testcase-minimized-4718045157130240
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/shorten.c')
-rw-r--r-- | libavcodec/shorten.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/shorten.c b/libavcodec/shorten.c index b785284aa2..18b77300a0 100644 --- a/libavcodec/shorten.c +++ b/libavcodec/shorten.c @@ -445,6 +445,10 @@ static int read_header(ShortenContext *s) s->blocksize = blocksize; maxnlpc = get_uint(s, LPCQSIZE); + if (maxnlpc > 1024U) { + av_log(s->avctx, AV_LOG_ERROR, "maxnlpc is: %d\n", maxnlpc); + return AVERROR_INVALIDDATA; + } s->nmean = get_uint(s, 0); skip_bytes = get_uint(s, NSKIPSIZE); |