summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'psi/zfont.c')
-rw-r--r--psi/zfont.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/psi/zfont.c b/psi/zfont.c
index 743e914a..5d7dd15f 100644
--- a/psi/zfont.c
+++ b/psi/zfont.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2001-2019 Artifex Software, Inc.
+/* Copyright (C) 2001-2020 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
@@ -41,8 +41,11 @@ static int setup_unicode_decoder(i_ctx_t *i_ctx_p, ref *Decoding);
bool
zfont_mark_glyph_name(const gs_memory_t *mem, gs_glyph glyph, void *ignore_data)
{
- return (glyph >= gs_c_min_std_encoding_glyph || glyph == GS_NO_GLYPH ? false :
- name_mark_index(mem, (uint) glyph));
+ if (glyph == GS_NO_GLYPH)
+ return false;
+ if (glyph >= gs_c_min_std_encoding_glyph)
+ return false;
+ return name_mark_index(mem, (uint) glyph);
}
/* Get a global glyph code. */