You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
mov: free memory on header parsing failure
Call mov_read_close when mov_read_header fails. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
This commit is contained in:
committed by
Luca Barbato
parent
4ebd422c04
commit
c788782c7d
@@ -2594,6 +2594,39 @@ finish:
|
|||||||
avio_seek(sc->pb, cur_pos, SEEK_SET);
|
avio_seek(sc->pb, cur_pos, SEEK_SET);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int mov_read_close(AVFormatContext *s)
|
||||||
|
{
|
||||||
|
MOVContext *mov = s->priv_data;
|
||||||
|
int i, j;
|
||||||
|
|
||||||
|
for (i = 0; i < s->nb_streams; i++) {
|
||||||
|
AVStream *st = s->streams[i];
|
||||||
|
MOVStreamContext *sc = st->priv_data;
|
||||||
|
|
||||||
|
av_freep(&sc->ctts_data);
|
||||||
|
for (j = 0; j < sc->drefs_count; j++) {
|
||||||
|
av_freep(&sc->drefs[j].path);
|
||||||
|
av_freep(&sc->drefs[j].dir);
|
||||||
|
}
|
||||||
|
av_freep(&sc->drefs);
|
||||||
|
if (sc->pb && sc->pb != s->pb)
|
||||||
|
avio_close(sc->pb);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mov->dv_demux) {
|
||||||
|
for (i = 0; i < mov->dv_fctx->nb_streams; i++) {
|
||||||
|
av_freep(&mov->dv_fctx->streams[i]->codec);
|
||||||
|
av_freep(&mov->dv_fctx->streams[i]);
|
||||||
|
}
|
||||||
|
av_freep(&mov->dv_fctx);
|
||||||
|
av_freep(&mov->dv_demux);
|
||||||
|
}
|
||||||
|
|
||||||
|
av_freep(&mov->trex_data);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static int mov_read_header(AVFormatContext *s)
|
static int mov_read_header(AVFormatContext *s)
|
||||||
{
|
{
|
||||||
MOVContext *mov = s->priv_data;
|
MOVContext *mov = s->priv_data;
|
||||||
@@ -2611,10 +2644,12 @@ static int mov_read_header(AVFormatContext *s)
|
|||||||
/* check MOV header */
|
/* check MOV header */
|
||||||
if ((err = mov_read_default(mov, pb, atom)) < 0) {
|
if ((err = mov_read_default(mov, pb, atom)) < 0) {
|
||||||
av_log(s, AV_LOG_ERROR, "error reading header: %d\n", err);
|
av_log(s, AV_LOG_ERROR, "error reading header: %d\n", err);
|
||||||
|
mov_read_close(s);
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
if (!mov->found_moov) {
|
if (!mov->found_moov) {
|
||||||
av_log(s, AV_LOG_ERROR, "moov atom not found\n");
|
av_log(s, AV_LOG_ERROR, "moov atom not found\n");
|
||||||
|
mov_read_close(s);
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
}
|
}
|
||||||
av_dlog(mov->fc, "on_parse_exit_offset=%"PRId64"\n", avio_tell(pb));
|
av_dlog(mov->fc, "on_parse_exit_offset=%"PRId64"\n", avio_tell(pb));
|
||||||
@@ -2807,39 +2842,6 @@ static int mov_read_seek(AVFormatContext *s, int stream_index, int64_t sample_ti
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int mov_read_close(AVFormatContext *s)
|
|
||||||
{
|
|
||||||
MOVContext *mov = s->priv_data;
|
|
||||||
int i, j;
|
|
||||||
|
|
||||||
for (i = 0; i < s->nb_streams; i++) {
|
|
||||||
AVStream *st = s->streams[i];
|
|
||||||
MOVStreamContext *sc = st->priv_data;
|
|
||||||
|
|
||||||
av_freep(&sc->ctts_data);
|
|
||||||
for (j = 0; j < sc->drefs_count; j++) {
|
|
||||||
av_freep(&sc->drefs[j].path);
|
|
||||||
av_freep(&sc->drefs[j].dir);
|
|
||||||
}
|
|
||||||
av_freep(&sc->drefs);
|
|
||||||
if (sc->pb && sc->pb != s->pb)
|
|
||||||
avio_close(sc->pb);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (mov->dv_demux) {
|
|
||||||
for (i = 0; i < mov->dv_fctx->nb_streams; i++) {
|
|
||||||
av_freep(&mov->dv_fctx->streams[i]->codec);
|
|
||||||
av_freep(&mov->dv_fctx->streams[i]);
|
|
||||||
}
|
|
||||||
av_freep(&mov->dv_fctx);
|
|
||||||
av_freep(&mov->dv_demux);
|
|
||||||
}
|
|
||||||
|
|
||||||
av_freep(&mov->trex_data);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
AVInputFormat ff_mov_demuxer = {
|
AVInputFormat ff_mov_demuxer = {
|
||||||
.name = "mov,mp4,m4a,3gp,3g2,mj2",
|
.name = "mov,mp4,m4a,3gp,3g2,mj2",
|
||||||
.long_name = NULL_IF_CONFIG_SMALL("QuickTime/MPEG-4/Motion JPEG 2000 format"),
|
.long_name = NULL_IF_CONFIG_SMALL("QuickTime/MPEG-4/Motion JPEG 2000 format"),
|
||||||
|
Reference in New Issue
Block a user