more space for image headers
up to 32kb for image header print, but a true expanding string would be better
This commit is contained in:
parent
69331fab9f
commit
cca955136d
@ -153,7 +153,11 @@ void
|
|||||||
vips_object_print( VipsObject *object )
|
vips_object_print( VipsObject *object )
|
||||||
{
|
{
|
||||||
VipsObjectClass *class = VIPS_OBJECT_GET_CLASS( 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 );
|
VipsBuf buf = VIPS_BUF_STATIC( str );
|
||||||
|
|
||||||
vips_object_print_class( class );
|
vips_object_print_class( class );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user