On 4/26/20 5:34 PM, Jeyapal, Karthick wrote: > > On 4/26/20 3:19 PM, [email protected] wrote: >> From: Limin Wang <[email protected]> >> >> Signed-off-by: Limin Wang <[email protected]> >> --- >> libavformat/dashenc.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c >> index 96c0ea3..e3e187c 100644 >> --- a/libavformat/dashenc.c >> +++ b/libavformat/dashenc.c >> @@ -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; > LGTM
Pushed all three dashenc patches from this patchset. > > _______________________________________________ > ffmpeg-devel mailing list > [email protected] > https://ffmpeg.org/mailman/listinfo/ffmpeg-devel > > To unsubscribe, visit link above, or email > [email protected] with subject "unsubscribe". _______________________________________________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
