summaryrefslogtreecommitdiff
path: root/libtiff/tif_zip.c
diff options
context:
space:
mode:
authorJoris Van Damme <joris.at.lebbeke@skynet.be>2007-05-30 13:53:17 +0000
committerJoris Van Damme <joris.at.lebbeke@skynet.be>2007-05-30 13:53:17 +0000
commitc81185549e11a5bf6e76aa617d2d44134ab5eadd (patch)
treeb37e6e61b1962596c60b8bec58900f395e6af4cd /libtiff/tif_zip.c
parentc5e8d4f5ac1971a1f5bfb0f761f26b5b9ea0c3fb (diff)
downloadlibtiff-git-c81185549e11a5bf6e76aa617d2d44134ab5eadd.tar.gz
BigTIFF upgrade in progress - widespread temp mess - does not compile now
Diffstat (limited to 'libtiff/tif_zip.c')
-rw-r--r--libtiff/tif_zip.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/libtiff/tif_zip.c b/libtiff/tif_zip.c
index 13111786..1cbcaa7e 100644
--- a/libtiff/tif_zip.c
+++ b/libtiff/tif_zip.c
@@ -1,4 +1,4 @@
-/* $Id: tif_zip.c,v 1.19 2007-05-11 05:44:11 joris Exp $ */
+/* $Id: tif_zip.c,v 1.20 2007-05-30 13:53:18 joris Exp $ */
/*
* Copyright (c) 1995-1997 Sam Leffler
@@ -85,6 +85,12 @@ static int ZIPEncode(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s);
static int ZIPDecode(TIFF* tif, uint8* op, tmsize_t occ, uint16 s);
static int
+ZIPFixupTags(TIFF* tif)
+{
+ return (1);
+}
+
+static int
ZIPSetupDecode(TIFF* tif)
{
static const char module[] = "ZIPSetupDecode";
@@ -421,6 +427,7 @@ TIFFInitZIP(TIFF* tif, int scheme)
/*
* Install codec methods.
*/
+ tif->tif_fixuptags = ZIPFixupTags;
tif->tif_setupdecode = ZIPSetupDecode;
tif->tif_predecode = ZIPPreDecode;
tif->tif_decoderow = ZIPDecode;