diff src/image-load.c @ 54:b58cac75ad12

Thu Jun 9 22:23:18 2005 John Ellis <johne@verizon.net> * exif.[ch]: A lot of code clean up, add generic tiff header parser, remove use of packed structures to interpret tiff file format, fix possible endless loops in tiff parser with corrupt IFD tables, and fix possible overflow in jpeg exif parser. * format_canon.[ch]: Add additional makernote values, plus a few spelling fixes. Header update. * format_fuji.[ch]: Header update. * format_nikon.[ch]: Updates to use new tiff parsing utils in exif.c, code cleanup. Header update. * format_raw.[ch]: Add pathname argument to file descriptor version of raw parser to quickly rule out non-raw files based on file extension. Add raw header match type to check for tiff "make" field value. * image-load.c (image_loader_begin): Add image filename for raw parser.
author gqview
date Fri, 10 Jun 2005 02:44:36 +0000
parents 7cfa60beda76
children 9c0c402b0ef3
line wrap: on
line diff
--- a/src/image-load.c	Tue Jun 07 07:55:00 2005 +0000
+++ b/src/image-load.c	Fri Jun 10 02:44:36 2005 +0000
@@ -218,7 +218,7 @@
 	b = read(il->load_fd, &buf, sizeof(buf));
 
 	if (b > 1 &&
-	    format_raw_img_exif_offsets_fd(il->load_fd, buf, b, &offset, NULL))
+	    format_raw_img_exif_offsets_fd(il->load_fd, il->path, buf, b, &offset, NULL))
 		{
 		if (debug) printf("Raw file %s contains embedded image\n", il->path);