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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/102/head
Michael Niedermayer 10 years ago
parent f9ddaa35c7
commit 07e4ed5637
  1. 2
      libavformat/mov.c

@ -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);

Loading…
Cancel
Save