diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-01-24 17:51:40 +0100 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2012-01-31 18:32:13 -0800 |
commit | 5a396bb3a66a61a68b80f2369d0249729bf85e04 (patch) | |
tree | c5a4e5ef92a647b927fde35f22a1d81861a746d2 | |
parent | 635bcfccd439480003b74a665b5aa7c872c1ad6b (diff) | |
download | ffmpeg-5a396bb3a66a61a68b80f2369d0249729bf85e04.tar.gz |
dv: Fix null pointer dereference due to ach=0
dv: Fix null pointer dereference due to ach=0
Fixes part2 of CVE-2011-3929
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Reviewed-by: Roman Shaposhnik <roman@shaposhnik.org>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Alex Converse <alex.converse@gmail.com>
-rw-r--r-- | libavformat/dv.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/dv.c b/libavformat/dv.c index c90ddec0d3..5e1c798586 100644 --- a/libavformat/dv.c +++ b/libavformat/dv.c @@ -343,7 +343,8 @@ int avpriv_dv_produce_packet(DVDemuxContext *c, AVPacket *pkt, c->audio_pkt[i].pts = c->abytes * 30000*8 / c->ast[i]->codec->bit_rate; ppcm[i] = c->audio_buf[i]; } - dv_extract_audio(buf, ppcm, c->sys); + if (c->ach) + dv_extract_audio(buf, ppcm, c->sys); /* We work with 720p frames split in half, thus even frames have * channels 0,1 and odd 2,3. */ |