diff options
author | Sebastian Rasmussen <sebras@hotmail.com> | 2009-11-07 17:35:34 +0100 |
---|---|---|
committer | Sebastian Rasmussen <sebras@hotmail.com> | 2009-11-07 17:35:34 +0100 |
commit | 3aec515191c29a8b70bd5e80226ecae8d09f2038 (patch) | |
tree | 036af2853e057a4194a19477b6ed9f424889e6bf | |
parent | 836800bf5a7d9c99738cfd5bab4699af68d2fb6a (diff) | |
download | mupdf-3aec515191c29a8b70bd5e80226ecae8d09f2038.tar.xz |
Correct initial value of earlychange flag in LZW decoder.
-rw-r--r-- | fitz/filt_lzwd.c | 2 |
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) { |