Commit 9e4a5eb5 authored by Luca Barbato's avatar Luca Barbato

avformat: Free the internal codec context at the end

Avoid a use after free in avformat_find_stream_info.

CC: libav-stable@libav.org
parent 19c5fa9e
...@@ -2466,11 +2466,6 @@ FF_ENABLE_DEPRECATION_WARNINGS ...@@ -2466,11 +2466,6 @@ FF_ENABLE_DEPRECATION_WARNINGS
count++; count++;
} }
// close codecs which were opened in try_decode_frame()
for (i = 0; i < ic->nb_streams; i++) {
st = ic->streams[i];
avcodec_close(st->internal->avctx);
}
for (i = 0; i < ic->nb_streams; i++) { for (i = 0; i < ic->nb_streams; i++) {
st = ic->streams[i]; st = ic->streams[i];
avctx = st->internal->avctx; avctx = st->internal->avctx;
...@@ -2570,6 +2565,7 @@ FF_ENABLE_DEPRECATION_WARNINGS ...@@ -2570,6 +2565,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
find_stream_info_err: find_stream_info_err:
for (i = 0; i < ic->nb_streams; i++) { for (i = 0; i < ic->nb_streams; i++) {
avcodec_close(ic->streams[i]->internal->avctx);
av_freep(&ic->streams[i]->info); av_freep(&ic->streams[i]->info);
av_bsf_free(&ic->streams[i]->internal->extract_extradata.bsf); av_bsf_free(&ic->streams[i]->internal->extract_extradata.bsf);
av_packet_free(&ic->streams[i]->internal->extract_extradata.pkt); av_packet_free(&ic->streams[i]->internal->extract_extradata.pkt);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment