diff options
Diffstat (limited to 'locale/programs')
-rw-r--r-- | locale/programs/repertoire.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/locale/programs/repertoire.c b/locale/programs/repertoire.c index aabe20181e..4a4ef756fa 100644 --- a/locale/programs/repertoire.c +++ b/locale/programs/repertoire.c @@ -465,6 +465,9 @@ repertoire_find_value (const struct repertoire_t *rep, const char *name, { void *result; + if (rep == NULL) + error (5, 0, _("FATAL: no repertoire map specified")); + if (find_entry ((hash_table *) &rep->char_table, name, len, &result) < 0) return ILLEGAL_CHAR_VALUE; @@ -477,6 +480,9 @@ repertoire_find_symbol (const struct repertoire_t *rep, uint32_t ucs) { void *result; + if (rep == NULL) + error (5, 0, _("FATAL: no repertoire map specified")); + if (find_entry ((hash_table *) &rep->reverse_table, &ucs, sizeof (ucs), &result) < 0) return NULL; @@ -490,6 +496,9 @@ repertoire_find_seq (const struct repertoire_t *rep, uint32_t ucs) { void *result; + if (rep == NULL) + error (5, 0, _("FATAL: no repertoire map specified")); + if (find_entry ((hash_table *) &rep->seq_table, &ucs, sizeof (ucs), &result) < 0) return NULL; |