aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/text.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/text.c')
-rw-r--r--src/stdlib/text.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stdlib/text.c b/src/stdlib/text.c
index f323d88d..8e800c8a 100644
--- a/src/stdlib/text.c
+++ b/src/stdlib/text.c
@@ -1605,6 +1605,7 @@ static INLINE const char *codepoint_name(ucs4_t c) {
char *found_name = unicode_character_name(c, name);
if (found_name) return found_name;
const uc_block_t *block = uc_block(c);
+ if (!block) return "???";
assert(block);
return String(block->name, "-", hex(c, .no_prefix = true, .uppercase = true));
}