summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fitz/filt_basic.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/fitz/filt_basic.c b/fitz/filt_basic.c
index 7d504f29..ef6dc920 100644
--- a/fitz/filt_basic.c
+++ b/fitz/filt_basic.c
@@ -350,7 +350,11 @@ read_a85d(fz_stream *stm, unsigned char *buf, int len)
case 0:
break;
case 1:
- fz_throw(stm->ctx, "partial final byte in a85d");
+ /* Specifically illegal in the spec, but adobe
+ * and gs both cope. See normal_87.pdf for a
+ * case where this matters. */
+ fz_warn(stm->ctx, "partial final byte in a85d");
+ break;
case 2:
word = word * (85 * 85 * 85) + 0xffffff;
state->bp[0] = word >> 24;