Browse Source

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

tags/n2.3
Carl Eugen Hoyos 12 years ago
parent
commit
d68ac92dc2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/movenc.c

+ 1
- 1
libavformat/movenc.c View File

@@ -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