mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/dashdec: Fix memleaks upon read_header failure
Reviewed-by: Steven Liu <lq@chinaffmpeg.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
aed96e13c1
commit
06e31f953e
|
@ -2047,6 +2047,7 @@ static int copy_init_section(struct representation *rep_dest, struct representat
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int dash_close(AVFormatContext *s);
|
||||||
|
|
||||||
static int dash_read_header(AVFormatContext *s)
|
static int dash_read_header(AVFormatContext *s)
|
||||||
{
|
{
|
||||||
|
@ -2178,6 +2179,7 @@ static int dash_read_header(AVFormatContext *s)
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
fail:
|
fail:
|
||||||
|
dash_close(s);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue