Signed-off-by: Andreas Rheinhardt <andreas.rheinha...@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; -- 2.20.1 _______________________________________________ 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".