mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/vplayerdec: 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 67434afa7f
)
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
c86d0c0f7c
commit
4cfc3e8a15
|
@ -83,8 +83,10 @@ static int vplayer_read_header(AVFormatContext *s)
|
|||
AVPacket *sub;
|
||||
|
||||
sub = ff_subtitles_queue_insert(&vplayer->q, p, strlen(p), 0);
|
||||
if (!sub)
|
||||
if (!sub) {
|
||||
ff_subtitles_queue_clean(&vplayer->q);
|
||||
return AVERROR(ENOMEM);
|
||||
}
|
||||
sub->pos = pos;
|
||||
sub->pts = pts_start;
|
||||
sub->duration = -1;
|
||||
|
|
Loading…
Reference in New Issue