[x264-devel] commit: Add missing free() for f_qp_offset in frame.c ( Jason Garrett-Glaser )

git version control git at videolan.org
Wed Sep 17 07:41:13 CEST 2008


x264 | branch: master | Jason Garrett-Glaser <darkshikari at gmail.com> | Tue Sep 16 22:44:10 2008 -0700| [dcb123f72958af61b1803103246cc61e2528c5cb] | committer: Jason Garrett-Glaser 

Add missing free() for f_qp_offset in frame.c

> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=dcb123f72958af61b1803103246cc61e2528c5cb
---

 common/frame.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/common/frame.c b/common/frame.c
index 43da631..46b4c67 100644
--- a/common/frame.c
+++ b/common/frame.c
@@ -152,6 +152,7 @@ void x264_frame_delete( x264_frame_t *frame )
             x264_free( frame->lowres_mvs[j][i] );
             x264_free( frame->lowres_mv_costs[j][i] );
         }
+    x264_free( frame->f_qp_offset );
     x264_free( frame->i_row_bits );
     x264_free( frame->i_row_qp );
     x264_free( frame->mb_type );



More information about the x264-devel mailing list