Commit d1d8f866 authored by Michael Niedermayer's avatar Michael Niedermayer

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

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent edeaf6f3
...@@ -445,7 +445,7 @@ static int read_close(AVFormatContext *s) ...@@ -445,7 +445,7 @@ static int read_close(AVFormatContext *s)
int i; int i;
for (i = 0; i < 100; i++) for (i = 0; i < 100; i++)
if (mlv->pb[i]) if (mlv->pb[i])
avio_close(mlv->pb[i]); avio_closep(&mlv->pb[i]);
return 0; return 0;
} }
......
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