mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/asfenc: Check for index_ptr allocation failure
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d6bb82387c
commit
3662e251cb
|
@ -652,6 +652,8 @@ static int asf_write_header(AVFormatContext *s)
|
|||
asf->nb_packets = 0;
|
||||
|
||||
asf->index_ptr = av_malloc(sizeof(ASFIndex) * ASF_INDEX_BLOCK);
|
||||
if (!asf->index_ptr)
|
||||
return AVERROR(ENOMEM);
|
||||
asf->nb_index_memory_alloc = ASF_INDEX_BLOCK;
|
||||
asf->maximum_packet = 0;
|
||||
|
||||
|
|
Loading…
Reference in New Issue