mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
avcodec/mpeg12dec: Fix uninitialized data in fate-sub-cc-scte20
The issue is introduced in a705bcd763
, please tested with below command line:
make V=1 fate-sub-cc-scte20 TARGET_EXEC="valgrind --error-exitcode=1"
Reported-by: Martin Storsjö <martin@martin.st>
Reviewed-by: Martin Storsjö <martin@martin.st>
Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
This commit is contained in:
parent
5005b41ad6
commit
b6f505ce0a
@ -2276,6 +2276,8 @@ static int mpeg_decode_a53_cc(AVCodecContext *avctx,
|
|||||||
if (ret >= 0) {
|
if (ret >= 0) {
|
||||||
uint8_t field, cc1, cc2;
|
uint8_t field, cc1, cc2;
|
||||||
uint8_t *cap = s1->a53_buf_ref->data;
|
uint8_t *cap = s1->a53_buf_ref->data;
|
||||||
|
|
||||||
|
memset(s1->a53_buf_ref->data + old_size, 0, cc_count * 3);
|
||||||
for (i = 0; i < cc_count && get_bits_left(&gb) >= 26; i++) {
|
for (i = 0; i < cc_count && get_bits_left(&gb) >= 26; i++) {
|
||||||
skip_bits(&gb, 2); // priority
|
skip_bits(&gb, 2); // priority
|
||||||
field = get_bits(&gb, 2);
|
field = get_bits(&gb, 2);
|
||||||
|
Loading…
Reference in New Issue
Block a user