diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2008-05-24 12:55:36 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2008-05-24 12:55:36 +0000 |
commit | 570745cc5114ea13d0054f73776533f5e6e538f8 (patch) | |
tree | 39a7f8a37300868776caffaaa86e639a6940c4a9 | |
parent | be2c232f43ba9bad5e989f6c84dc4e081bb79a6d (diff) | |
download | ffmpeg-570745cc5114ea13d0054f73776533f5e6e538f8.tar.gz |
remove useless title check
Originally committed as revision 13279 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/utils.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 7faedccdcb..dbe6ea08e1 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2261,7 +2261,6 @@ AVChapter *ff_new_chapter(AVFormatContext *s, int id, AVRational time_base, int6 return NULL; dynarray_add(&s->chapters, &s->nb_chapters, chapter); } - if(chapter->title) av_free(chapter->title); chapter->title = av_strdup(title); chapter->id = id; |