From 5b5255f197c7b6355010d781370a3331ab5b68c3 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 21 Sep 1999 15:43:20 +0000 Subject: Update. 1999-09-21 Ulrich Drepper * locale/programs/repertoire.c (repertoire_find_value): Abort if rep parameter is NULL. (repertoire_find_symbol): Likewise. (repertoire_find_seq): Likewise. --- locale/programs/repertoire.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'locale/programs') 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; -- cgit v1.2.3