Commit c104a6e9 authored by Michael Niedermayer's avatar Michael Niedermayer

oggdec: use av_freep() instead of av_free()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent b52a65cc
...@@ -247,8 +247,8 @@ ogg_read_page (AVFormatContext * s, int *str) ...@@ -247,8 +247,8 @@ ogg_read_page (AVFormatContext * s, int *str)
int n; int n;
for (n = 0; n < ogg->nstreams; n++) { for (n = 0; n < ogg->nstreams; n++) {
av_free(ogg->streams[n].buf); av_freep(&ogg->streams[n].buf);
av_free(ogg->streams[n].private); av_freep(&ogg->streams[n].private);
} }
ogg->curidx = -1; ogg->curidx = -1;
ogg->nstreams = 0; ogg->nstreams = 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