summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@hotmail.com>2009-11-07 17:35:34 +0100
committerSebastian Rasmussen <sebras@hotmail.com>2009-11-07 17:35:34 +0100
commit3aec515191c29a8b70bd5e80226ecae8d09f2038 (patch)
tree036af2853e057a4194a19477b6ed9f424889e6bf
parent836800bf5a7d9c99738cfd5bab4699af68d2fb6a (diff)
downloadmupdf-3aec515191c29a8b70bd5e80226ecae8d09f2038.tar.xz
Correct initial value of earlychange flag in LZW decoder.
-rw-r--r--fitz/filt_lzwd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fitz/filt_lzwd.c b/fitz/filt_lzwd.c
index 35ae59c2..3fb5a759 100644
--- a/fitz/filt_lzwd.c
+++ b/fitz/filt_lzwd.c
@@ -49,7 +49,7 @@ fz_newlzwd(fz_filter **fp, fz_obj *params)
FZ_NEWFILTER(fz_lzwd, lzw, lzwd);
- lzw->earlychange = 0;
+ lzw->earlychange = 1;
if (params)
{