about summary refs log tree commit diff
path: root/locale/programs/ld-collate.c
diff options
context:
space:
mode:
Diffstat (limited to 'locale/programs/ld-collate.c')
-rw-r--r--locale/programs/ld-collate.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/locale/programs/ld-collate.c b/locale/programs/ld-collate.c
index 0d6e113827..2858f641d6 100644
--- a/locale/programs/ld-collate.c
+++ b/locale/programs/ld-collate.c
@@ -457,7 +457,8 @@ insert_value (struct linereader *ldfile, struct token *arg,
     return;
 
   /* Test whether this element is not already in the list.  */
-  if (elem->next != NULL || elem->next == collate->cursor)
+  if (elem->next != NULL || (collate->cursor != NULL
+			     && elem->next == collate->cursor))
     {
       lr_error (ldfile, _("order for `%.*s' already defined at %s:%Z"),
 		arg->val.str.lenmb, arg->val.str.startmb,