Andreas Rheinhardt: > Signed-off-by: Andreas Rheinhardt <[email protected]> > --- > 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 _______________________________________________ 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".
