summaryrefslogtreecommitdiffstats
path: root/libhb/hb.c
diff options
context:
space:
mode:
authorsuperdump <[email protected]>2007-08-29 14:21:31 +0000
committersuperdump <[email protected]>2007-08-29 14:21:31 +0000
commit28a00347776cdcaa9b2d4cc0e5855089bc0c4f76 (patch)
treefcdf5d8fc786fa93aa4c128627dcea1149278c7f /libhb/hb.c
parentec3badbdc790b554252efb299a3348e5051da3b0 (diff)
These calls to free produce double free warnings. It seems that removing the avpicture_free calls doesn't stop the warnings. Confusing to me as the buffers aren't freed elsewhere, but removing these seems to work.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@891 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/hb.c')
-rw-r--r--libhb/hb.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libhb/hb.c b/libhb/hb.c
index e90daeb0d..7b75e8511 100644
--- a/libhb/hb.c
+++ b/libhb/hb.c
@@ -419,10 +419,6 @@ void hb_get_preview( hb_handle_t * h, hb_title_t * title, int picture,
avpicture_free( &pic_scale );
avpicture_free( &pic_deint );
avpicture_free( &pic_in );
- free( buf1 );
- free( buf2 );
- free( buf3 );
- free( buf4 );
}
/**