Commit b5b34c19 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/matroskaenc: use av_freep() to avoid leaving stale pointers

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 2175f768
...@@ -365,7 +365,7 @@ static int64_t mkv_write_seekhead(AVIOContext *pb, mkv_seekhead *seekhead) ...@@ -365,7 +365,7 @@ static int64_t mkv_write_seekhead(AVIOContext *pb, mkv_seekhead *seekhead)
currentpos = seekhead->filepos; currentpos = seekhead->filepos;
} }
fail: fail:
av_free(seekhead->entries); av_freep(&seekhead->entries);
av_free(seekhead); av_free(seekhead);
return currentpos; return currentpos;
...@@ -1685,7 +1685,7 @@ static int mkv_write_trailer(AVFormatContext *s) ...@@ -1685,7 +1685,7 @@ static int mkv_write_trailer(AVFormatContext *s)
} }
end_ebml_master(pb, mkv->segment); end_ebml_master(pb, mkv->segment);
av_free(mkv->tracks); av_freep(&mkv->tracks);
av_freep(&mkv->cues->entries); av_freep(&mkv->cues->entries);
av_freep(&mkv->cues); av_freep(&mkv->cues);
......
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