1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-29 22:00:58 +02:00

Fix possible double free when encoding using xvid.

(cherry picked from commit 315f0e3fd8dcbd1362276b7407dad2e97cccc4b7)
This commit is contained in:
Carl Eugen Hoyos 2011-07-01 02:38:28 +02:00 committed by Michael Niedermayer
parent e9210b4e17
commit 46f9a6203a

View File

@ -485,6 +485,7 @@ av_cold int ff_xvid_encode_close(AVCodecContext *avctx) {
if( x->twopassbuffer != NULL ) {
av_free(x->twopassbuffer);
av_free(x->old_twopassbuffer);
avctx->stats_out = NULL;
}
if( x->twopassfile != NULL )
av_free(x->twopassfile);