matroskadec: favor av_freep()

av_freep() is safer as it zeros the pointer

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-06-03 16:05:09 +02:00
parent 43487bc5c1
commit 0722b4d08c
1 changed files with 1 additions and 1 deletions

View File

@ -2276,7 +2276,7 @@ static int matroska_parse_frame(MatroskaDemuxContext *matroska,
memcpy(pkt->data + offset, pkt_data, pkt_size);
if (pkt_data != data)
av_free(pkt_data);
av_freep(&pkt_data);
pkt->flags = is_keyframe;
pkt->stream_index = st->index;