summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@gmail.com>2016-09-27 01:25:00 +0800
committerSebastian Rasmussen <sebras@gmail.com>2016-09-27 01:25:25 +0800
commiteedec4421fdc61fda830bcec4f4a2d4e3eed2268 (patch)
tree4d15d62537c6d08f34e3bd76b6db47136688aabe /source
parentd72b1b06093672fe8e0ef091d35939d8fadfb938 (diff)
downloadmupdf-eedec4421fdc61fda830bcec4f4a2d4e3eed2268.tar.xz
tiff: Fix typo in thunder decoder.
Diffstat (limited to 'source')
-rw-r--r--source/fitz/filter-thunder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/filter-thunder.c b/source/fitz/filter-thunder.c
index 65cb115b..66ac37e7 100644
--- a/source/fitz/filter-thunder.c
+++ b/source/fitz/filter-thunder.c
@@ -25,7 +25,7 @@ next_thunder(fz_context *ctx, fz_stream *stm, size_t max)
unsigned char *ep;
int c, v, i, pixels, index;
- if (max > state->len);
+ if (max > state->len)
max = state->len;
ep = p + max;