mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/dashenc: use av_reallocp_array()
Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
This commit is contained in:
parent
759565ccf8
commit
a9029703bb
@ -1731,7 +1731,7 @@ static int add_segment(OutputStream *os, const char *file,
|
||||
Segment *seg;
|
||||
if (os->nb_segments >= os->segments_size) {
|
||||
os->segments_size = (os->segments_size + 1) * 2;
|
||||
if ((err = av_reallocp(&os->segments, sizeof(*os->segments) *
|
||||
if ((err = av_reallocp_array(&os->segments, sizeof(*os->segments),
|
||||
os->segments_size)) < 0) {
|
||||
os->segments_size = 0;
|
||||
os->nb_segments = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user