[FFmpeg-devel] [PATCH 05/11] avformat/pcmdec: fix memory leak
Timo Rothenpieler
timo at rothenpieler.org
Sun Jun 11 17:05:47 EEST 2017
Fixes CID 1396267
---
libavformat/pcmdec.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/libavformat/pcmdec.c b/libavformat/pcmdec.c
index 3c7e8ac84b..d0ceea6fa9 100644
--- a/libavformat/pcmdec.c
+++ b/libavformat/pcmdec.c
@@ -68,6 +68,7 @@ static int pcm_read_header(AVFormatContext *s)
av_log(s, AV_LOG_ERROR,
"Invalid sample_rate found in mime_type \"%s\"\n",
mime_type);
+ av_freep(&mime_type);
return AVERROR_INVALIDDATA;
}
st->codecpar->sample_rate = rate;
@@ -75,6 +76,7 @@ static int pcm_read_header(AVFormatContext *s)
st->codecpar->channels = channels;
}
}
+ av_freep(&mime_type);
st->codecpar->bits_per_coded_sample =
av_get_bits_per_sample(st->codecpar->codec_id);
--
2.13.0
More information about the ffmpeg-devel
mailing list