On 4/26/20 3:19 PM, lance.lmw...@gmail.com wrote:
> From: Limin Wang <lance.lmw...@gmail.com>
>
> Signed-off-by: Limin Wang <lance.lmw...@gmail.com>
> ---
>  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

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to