[FFmpeg-cvslog] avcodec/wmalosslessdec: Reset num_saved_bits on error path
Michael Niedermayer
git at videolan.org
Mon Mar 12 02:33:27 EET 2018
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Sun Mar 11 00:13:57 2018 +0100| [64c9ce0abc0fd8774b523afda3ddb17c86caa86a] | committer: Michael Niedermayer
avcodec/wmalosslessdec: Reset num_saved_bits on error path
Fixes: NULL pointer dereference
Fixes: poc-201803.wav
Found-by: GwanYeong Kim <gy741.kim at gmail.com>
Reviewed-by: Paul B Mahol <onemda at gmail.com>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=64c9ce0abc0fd8774b523afda3ddb17c86caa86a
---
libavcodec/wmalosslessdec.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libavcodec/wmalosslessdec.c b/libavcodec/wmalosslessdec.c
index 133a3e92d1..59e8929586 100644
--- a/libavcodec/wmalosslessdec.c
+++ b/libavcodec/wmalosslessdec.c
@@ -1148,6 +1148,7 @@ static void save_bits(WmallDecodeCtx *s, GetBitContext* gb, int len,
if (len <= 0 || buflen > s->max_frame_size) {
avpriv_request_sample(s->avctx, "Too small input buffer");
s->packet_loss = 1;
+ s->num_saved_bits = 0;
return;
}
More information about the ffmpeg-cvslog
mailing list