From: Ralf Terdic Date: Thu, 2 Oct 2008 15:52:33 +0000 (-0700) Subject: Fix minor memory leak accidentally added with the addition of b-adapt 2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9df640c440e2a5b51683de01ba5a76e72ecc44f3;p=libx264 Fix minor memory leak accidentally added with the addition of b-adapt 2 --- diff --git a/common/frame.c b/common/frame.c index 46b4c67c..dc447a72 100644 --- a/common/frame.c +++ b/common/frame.c @@ -153,6 +153,7 @@ void x264_frame_delete( x264_frame_t *frame ) x264_free( frame->lowres_mv_costs[j][i] ); } x264_free( frame->f_qp_offset ); + x264_free( frame->i_intra_cost ); x264_free( frame->i_row_bits ); x264_free( frame->i_row_qp ); x264_free( frame->mb_type );