Commit 07e4ed56 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/mov: Use avio_closep() to avoid leaving stale pointers in memory

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent f9ddaa35
......@@ -3754,7 +3754,7 @@ static int mov_read_close(AVFormatContext *s)
sc->drefs_count = 0;
if (!sc->pb_is_copied)
avio_close(sc->pb);
avio_closep(&sc->pb);
sc->pb = NULL;
av_freep(&sc->chunk_offsets);
......
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