[FFmpeg-devel] [PATCH 04/17] avformat/smoothstreaming: Forward errors from copying white/blacklists

Andreas Rheinhardt andreas.rheinhardt at gmail.com
Tue Jun 23 07:18:47 EEST 2020


Andreas Rheinhardt:
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
> ---
>  libavformat/smoothstreamingenc.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/libavformat/smoothstreamingenc.c b/libavformat/smoothstreamingenc.c
> index 0e4f531f90..a5fd8a18db 100644
> --- a/libavformat/smoothstreamingenc.c
> +++ b/libavformat/smoothstreamingenc.c
> @@ -333,10 +333,12 @@ static int ism_write_header(AVFormatContext *s)
>          }
>  
>          os->ctx = ctx = avformat_alloc_context();
> -        if (!ctx || ff_copy_whiteblacklists(ctx, s) < 0) {
> +        if (!ctx) {
>              ret = AVERROR(ENOMEM);
>              goto fail;
>          }
> +        if ((ret = ff_copy_whiteblacklists(ctx, s)) < 0)
> +            goto fail;
>          ctx->oformat = oformat;
>          ctx->interrupt_callback = s->interrupt_callback;
>  
> 
Ping. Will apply tomorrow unless there are objections.

- Andreas


More information about the ffmpeg-devel mailing list