From 9df640c440e2a5b51683de01ba5a76e72ecc44f3 Mon Sep 17 00:00:00 2001 From: Ralf Terdic Date: Thu, 2 Oct 2008 08:52:33 -0700 Subject: [PATCH] Fix minor memory leak accidentally added with the addition of b-adapt 2 --- common/frame.c | 1 + 1 file changed, 1 insertion(+) 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 ); -- 2.40.0