You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec/ass_split: check ASSSplitContext alloc
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user