summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/smoothstreamingenc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavformat/smoothstreamingenc.c b/libavformat/smoothstreamingenc.c
index 33bb404f46..eefc61d08b 100644
--- a/libavformat/smoothstreamingenc.c
+++ b/libavformat/smoothstreamingenc.c
@@ -327,10 +327,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;