mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/rv34: Clear pointers in ff_rv34_decode_init_thread_copy()
Avoids leaving stale pointers
Fixes: signal_sigabrt_7ffff70eccc9_819_sabtriple.rm with memlimit 536870912
Found-by: Samuel Groß, Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 3197c0aa87
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
e693af81b7
commit
05684cee42
|
@ -1534,7 +1534,14 @@ int ff_rv34_decode_init_thread_copy(AVCodecContext *avctx)
|
||||||
|
|
||||||
if (avctx->internal->is_copy) {
|
if (avctx->internal->is_copy) {
|
||||||
r->tmp_b_block_base = NULL;
|
r->tmp_b_block_base = NULL;
|
||||||
|
r->cbp_chroma = NULL;
|
||||||
|
r->cbp_luma = NULL;
|
||||||
|
r->deblock_coefs = NULL;
|
||||||
|
r->intra_types_hist = NULL;
|
||||||
|
r->mb_type = NULL;
|
||||||
|
|
||||||
ff_mpv_idct_init(&r->s);
|
ff_mpv_idct_init(&r->s);
|
||||||
|
|
||||||
if ((err = ff_mpv_common_init(&r->s)) < 0)
|
if ((err = ff_mpv_common_init(&r->s)) < 0)
|
||||||
return err;
|
return err;
|
||||||
if ((err = rv34_decoder_alloc(r)) < 0) {
|
if ((err = rv34_decoder_alloc(r)) < 0) {
|
||||||
|
|
Loading…
Reference in New Issue