diff options
| -rw-r--r-- | fiv-io.c | 5 | 
1 files changed, 3 insertions, 2 deletions
@@ -1903,8 +1903,9 @@ load_tiff_ep(  		return NULL;  	} -	FivIoImage *image = open_libjpeg_turbo( -		(const char *) out.jpeg, out.jpeg_length, ctx, error); +	// Ignore ctx->enhance explicitly, for when we don't have LibRaw at all. +	FivIoImage *image = load_libjpeg_turbo((const char *) out.jpeg, +		out.jpeg_length, ctx, load_libjpeg_simple, error);  	if (!image)  		return NULL;  | 
