summaryrefslogtreecommitdiff
path: root/source/fitz/load-tiff.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2014-11-20 23:33:33 +0100
committerTor Andersson <tor@ccxvii.net>2014-12-03 01:33:00 +0100
commit5add23c7233c3f34fdfa6387873b1d3bdb93e1d6 (patch)
treeccdc25fbbd79dec830454e91bc8a6f7fc3888b1e /source/fitz/load-tiff.c
parent76e815e7e530370abf59d5863886b37bc6ebaa16 (diff)
downloadmupdf-5add23c7233c3f34fdfa6387873b1d3bdb93e1d6.tar.xz
Add ZIP file and directory reading module.
Diffstat (limited to 'source/fitz/load-tiff.c')
-rw-r--r--source/fitz/load-tiff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/load-tiff.c b/source/fitz/load-tiff.c
index 94bf2dc1..671e5146 100644
--- a/source/fitz/load-tiff.c
+++ b/source/fitz/load-tiff.c
@@ -167,7 +167,7 @@ fz_decode_tiff_lzw(struct tiff *tiff, fz_stream *chain, unsigned char *wp, int w
static void
fz_decode_tiff_flate(struct tiff *tiff, fz_stream *chain, unsigned char *wp, int wlen)
{
- fz_stream *stm = fz_open_flated(chain);
+ fz_stream *stm = fz_open_flated(chain, 15);
fz_read(stm, wp, wlen);
fz_close(stm);
}