]> granicus.if.org Git - libx264/commitdiff
Fix minor memory leak accidentally added with the addition of b-adapt 2
authorRalf Terdic <contact@jswiff.com>
Thu, 2 Oct 2008 15:52:33 +0000 (08:52 -0700)
committerFiona Glaser <fiona@x264.com>
Thu, 2 Oct 2008 15:52:33 +0000 (08:52 -0700)
common/frame.c

index 46b4c67c91e77d815364f1221726fac0658ff8af..dc447a72af3b2514e857616d526e1471addce918 100644 (file)
@@ -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 );