Browse Source

matroskadec: favor av_freep()

av_freep() is safer as it zeros the pointer

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.0
Michael Niedermayer 12 years ago
parent
commit
0722b4d08c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/matroskadec.c

+ 1
- 1
libavformat/matroskadec.c 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;


Loading…
Cancel
Save