movenc: Fix unfreed memory found by valgrind.

Signed-off-by: Philip Langdale <philipl@overt.org>
pull/28/head
Philip Langdale 12 years ago
parent 8d6f46ab2c
commit 3eb56e8434
  1. 3
      libavformat/movenc.c

@ -3154,11 +3154,12 @@ static int mov_write_subtitle_end_packet(AVFormatContext *s,
int stream_index, int stream_index,
int64_t dts) { int64_t dts) {
AVPacket end; AVPacket end;
short data = 0;
int ret; int ret;
av_init_packet(&end); av_init_packet(&end);
end.size = sizeof (short); end.size = sizeof (short);
end.data = av_mallocz(end.size); end.data = (char *)&data;
end.pts = dts; end.pts = dts;
end.dts = dts; end.dts = dts;
end.duration = 0; end.duration = 0;

Loading…
Cancel
Save