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:
parent
27b4d154ca
commit
d68ac92dc2
@ -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…
Reference in New Issue
Block a user