diff options
author | Clément Bœsch | 2015-06-13 20:39:57 +0200 |
---|---|---|
committer | Clément Bœsch | 2015-06-13 20:39:57 +0200 |
commit | 324cf0645d6ad20c5f990bd5c945f562ed69ca09 (patch) | |
tree | f1ccf295a5254e188f016310faa663470f209477 /libavcodec/ass_split.c | |
parent | c3517c377e1f1bdef822440adfff8c3ad2117660 (diff) |
avcodec/ass_split: check ASSSplitContext alloc
Diffstat (limited to 'libavcodec/ass_split.c')
-rw-r--r-- | libavcodec/ass_split.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/ass_split.c b/libavcodec/ass_split.c index 2458cb9225..9bc7b9d5d6 100644 --- a/libavcodec/ass_split.c +++ b/libavcodec/ass_split.c @@ -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); |