Skip to content
Snippets Groups Projects
Commit 286beebd authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avcodec/wmalosslessdec: check block_align


Code copied from wmaprodec

Fixes null pointer dereference
Fixes Ticket3002

Signed-off-by: default avatarMichael Niedermayer <michaelni@gmx.at>
parent ad8fbddb
No related branches found
No related tags found
No related merge requests found
......@@ -178,6 +178,11 @@ static av_cold int decode_init(AVCodecContext *avctx)
unsigned int channel_mask;
int i, log2_max_num_subframes;
if (!avctx->block_align) {
av_log(avctx, AV_LOG_ERROR, "block_align is not set\n");
return AVERROR(EINVAL);
}
s->avctx = avctx;
init_put_bits(&s->pb, s->frame_data, MAX_FRAMESIZE);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment