avcodec/ass_split: check ASSSplitContext alloc

This commit is contained in:
Clément Bœsch 2015-06-13 20:39:57 +02:00
parent c3517c377e
commit 324cf0645d
1 changed files with 2 additions and 0 deletions

View File

@ -356,6 +356,8 @@ static int ass_split(ASSSplitContext *ctx, const char *buf)
ASSSplitContext *ff_ass_split(const char *buf)
{
ASSSplitContext *ctx = av_mallocz(sizeof(*ctx));
if (!ctx)
return NULL;
ctx->current_section = -1;
if (ass_split(ctx, buf) < 0) {
ff_ass_split_free(ctx);