mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/nutenc: use av_reallocp_array()
Fixes memleak on allocation error. Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
6a70feadb0
commit
f2afe96181
@ -864,7 +864,7 @@ static int nut_write_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
for (i=0; i<s->nb_streams; i++) {
|
||||
int j;
|
||||
StreamContext *nus = &nut->stream[i];
|
||||
nus->keyframe_pts = av_realloc(nus->keyframe_pts, 2*nut->sp_count*sizeof(*nus->keyframe_pts));
|
||||
av_reallocp_array(&nus->keyframe_pts, 2*nut->sp_count, sizeof(*nus->keyframe_pts));
|
||||
if (!nus->keyframe_pts)
|
||||
return AVERROR(ENOMEM);
|
||||
for (j=nut->sp_count == 1 ? 0 : nut->sp_count; j<2*nut->sp_count; j++)
|
||||
|
Loading…
Reference in New Issue
Block a user