Browse Source

matroskadec: fix a memory leak

Originally committed as revision 13890 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Aurelien Jacobs 17 years ago
parent
commit
51e1cc16d3
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavformat/matroskadec.c

+ 3
- 0
libavformat/matroskadec.c View File

@@ -2887,6 +2887,9 @@ matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data, int size,
memcpy (pkt->data, matroska->tracks[track]->encoding_settings, offset);
memcpy (pkt->data+offset, pkt_data, pkt_size);

if (pkt_data != data)
av_free(pkt_data);

if (n == 0)
pkt->flags = is_keyframe;
pkt->stream_index = stream_index;


Loading…
Cancel
Save