diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-10-16 13:47:56 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-10-19 21:36:57 +0200 |
commit | 8d4431955ccca80933a837e1bc7f44679039335b (patch) | |
tree | 44fef95d7f7360e2d29e1de468914a66f2baa7b3 /libavcodec/movtextenc.c | |
parent | 56b3726ed2ac89df31a939a8f5f00fa66a0ad2ed (diff) | |
download | ffmpeg-8d4431955ccca80933a837e1bc7f44679039335b.tar.gz |
avcodec/movtextenc: Reset array counter after freeing array
Otherwise the mov_text encoder can segfault when given subtitles with more
than one AVSubtitleRect if one of the first nb_rects - 1 rects contained
a style attribute.
Reviewed-by: Philip Langdale <philipl@overt.org>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/movtextenc.c')
-rw-r--r-- | libavcodec/movtextenc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/movtextenc.c b/libavcodec/movtextenc.c index 11db240ab7..81e8c2e802 100644 --- a/libavcodec/movtextenc.c +++ b/libavcodec/movtextenc.c @@ -102,6 +102,7 @@ static void mov_text_cleanup(MovTextContext *s) av_freep(&s->style_attributes[j]); } av_freep(&s->style_attributes); + s->count = 0; } if (s->style_attributes_temp) { *s->style_attributes_temp = s->d; |