diff options
author | Robin Watts <robin.watts@artifex.com> | 2016-09-16 20:10:46 +0100 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2016-09-16 20:12:46 +0100 |
commit | b0d3b4756372dc19d0e8595550a2593a0afefa3c (patch) | |
tree | 05cfef5aa8792d771d5d76afc540d6431e591fbd | |
parent | 86fdaa193759a698c8281e0ff11c797f040ae69f (diff) | |
download | mupdf-b0d3b4756372dc19d0e8595550a2593a0afefa3c.tar.xz |
Correct assertion in pdf-store.
We can use names as keys for colorspaces. These are not bound to
a particular document.
-rw-r--r-- | source/pdf/pdf-store.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pdf/pdf-store.c b/source/pdf/pdf-store.c index ccedbe0b..44575691 100644 --- a/source/pdf/pdf-store.c +++ b/source/pdf/pdf-store.c @@ -55,7 +55,7 @@ pdf_store_item(fz_context *ctx, pdf_obj *key, void *val, size_t itemsize) { void *existing; - assert(pdf_is_array(ctx, key) || pdf_is_dict(ctx, key) || pdf_is_indirect(ctx, key)); + assert(pdf_is_name(ctx, key) || pdf_is_array(ctx, key) || pdf_is_dict(ctx, key) || pdf_is_indirect(ctx, key)); existing = fz_store_item(ctx, key, val, itemsize, &pdf_obj_store_type); assert(existing == NULL); (void)existing; /* Silence warning in release builds */ |