1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

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

This commit is contained in:
Carl Eugen Hoyos 2014-03-10 13:30:51 +01:00
parent 27b4d154ca
commit d68ac92dc2

View File

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