From 7d05d5d6ddc89c19a92e3b4ddfe6d53a5368100f Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Thu, 24 Nov 2011 21:55:27 +0000 Subject: [PATCH] oops typo missing return ... but probably harmless, I think --- libvips/format/im_jpeg2vips.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libvips/format/im_jpeg2vips.c b/libvips/format/im_jpeg2vips.c index 82ce88cf..e3c7f8a6 100644 --- a/libvips/format/im_jpeg2vips.c +++ b/libvips/format/im_jpeg2vips.c @@ -682,6 +682,7 @@ read_jpeg_header( struct jpeg_decompress_struct *cinfo, if( p->data_length > 4 && im_isprefix( "http", (char *) p->data ) && read_xmp( out, p->data, p->data_length ) ) + return( -1 ); break;