From cca955136ddd09adaed730c52f446d3878fa018a Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Wed, 8 Jun 2011 13:57:59 +0100 Subject: [PATCH] more space for image headers up to 32kb for image header print, but a true expanding string would be better --- libvips/iofuncs/object.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libvips/iofuncs/object.c b/libvips/iofuncs/object.c index 41cea58d..72ab9282 100644 --- a/libvips/iofuncs/object.c +++ b/libvips/iofuncs/object.c @@ -153,7 +153,11 @@ void vips_object_print( VipsObject *object ) { VipsObjectClass *class = VIPS_OBJECT_GET_CLASS( object ); - char str[1000]; + + /* This is used for printing image headers, so we may need lots of + * space. See header.c. + */ + char str[32768]; VipsBuf buf = VIPS_BUF_STATIC( str ); vips_object_print_class( class );