From 659f290ad4891da6c88e81b2c9649de1b3bf74ae Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 15 Apr 2002 17:35:59 +0000 Subject: Update. 2002-04-14 Bruno Haible * locale/programs/charmap.c (charmap_read): Don't access result if result == NULL. --- locale/programs/charmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'locale') diff --git a/locale/programs/charmap.c b/locale/programs/charmap.c index 82d5fb349f..0aa623bf34 100644 --- a/locale/programs/charmap.c +++ b/locale/programs/charmap.c @@ -194,7 +194,7 @@ character map file `%s' not found"), filename)); default character map file `%s' not found"), DEFAULT_CHARMAP)); } - if (result->code_set_name == NULL) + if (result != NULL && result->code_set_name == NULL) /* The input file does not specify a code set name. This shouldn't happen but we should cope with it. */ result->code_set_name = basename (filename); -- cgit 1.4.1