From a1db6267137401f51736aefd85b9ed35e6ba4e63 Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Wed, 4 Jun 2014 18:53:55 +0100 Subject: [PATCH] turn off orc program free stops a crash, makes a memleak see https://bugzilla.gnome.org/show_bug.cgi?id=731227 --- libvips/iofuncs/vector.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libvips/iofuncs/vector.c b/libvips/iofuncs/vector.c index 2cdb0ae7..55e03c6e 100644 --- a/libvips/iofuncs/vector.c +++ b/libvips/iofuncs/vector.c @@ -122,7 +122,9 @@ vips_vector_free( VipsVector *vector ) printf( "orc_program_free( %s );\n", vector->unique_name ); printf( "%s = NULL;\n", vector->unique_name ); #endif /*DEBUG_TRACE*/ + /* VIPS_FREEF( orc_program_free, vector->program ); + */ #endif /*HAVE_ORC*/ VIPS_FREE( vector->unique_name ); VIPS_FREE( vector );