Browse Source

avformat/mpl2dec: Fix memleak upon read header failure

The already parsed subtitles (contained in an FFDemuxSubtitlesQueue)
would leak if an error happened upon reading a subsequent subtitle.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
(cherry picked from commit 331799747e)
tags/n4.3
Andreas Rheinhardt 5 years ago
parent
commit
f172490742
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      libavformat/mpl2dec.c

+ 3
- 1
libavformat/mpl2dec.c View File

@@ -111,8 +111,10 @@ static int mpl2_read_header(AVFormatContext *s)
AVPacket *sub;

sub = ff_subtitles_queue_insert(&mpl2->q, p, strlen(p), 0);
if (!sub)
if (!sub) {
ff_subtitles_queue_clean(&mpl2->q);
return AVERROR(ENOMEM);
}
sub->pos = pos;
sub->pts = pts_start;
sub->duration = duration;


Loading…
Cancel
Save