assdec: check the right variable

CC: libav-stable@libav.org
Bug-Id: CID 1257815
pull/101/head
Vittorio Giovara 10 years ago
parent 971099ff5a
commit 9745f19ffc
  1. 2
      libavcodec/assdec.c

@ -29,7 +29,7 @@
static av_cold int ass_decode_init(AVCodecContext *avctx)
{
avctx->subtitle_header = av_malloc(avctx->extradata_size);
if (!avctx->extradata)
if (!avctx->subtitle_header)
return AVERROR(ENOMEM);
memcpy(avctx->subtitle_header, avctx->extradata, avctx->extradata_size);
avctx->subtitle_header_size = avctx->extradata_size;

Loading…
Cancel
Save