Replace an incorrect av_free() in movenc.c with av_freep().

pull/293/head
Carl Eugen Hoyos 11 years ago
parent 27b4d154ca
commit d68ac92dc2
  1. 2
      libavformat/movenc.c

@ -3598,7 +3598,7 @@ static int mov_create_chapter_track(AVFormatContext *s, int tracknum)
track->enc->extradata = buf;
track->enc->extradata_size = size;
} else {
av_free(&buf);
av_freep(&buf);
}
}
#endif

Loading…
Cancel
Save