aboutsummaryrefslogtreecommitdiff
path: root/locale
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-02-11 20:13:08 +0000
committerUlrich Drepper <drepper@redhat.com>2000-02-11 20:13:08 +0000
commit72071411c1aa1ea40d7d8dbd7d2d6a5977ab6d6e (patch)
tree520b0dc91270ccd3fb5818f9754cc0593bfe8d6b /locale
parent74c204058c380a355134fe8b9b682acf10b5b6c1 (diff)
downloadglibc-72071411c1aa1ea40d7d8dbd7d2d6a5977ab6d6e.zip
glibc-72071411c1aa1ea40d7d8dbd7d2d6a5977ab6d6e.tar.gz
glibc-72071411c1aa1ea40d7d8dbd7d2d6a5977ab6d6e.tar.bz2
Correct return value in error case. Don't set errno.
Diffstat (limited to 'locale')
-rw-r--r--locale/nl_langinfo.c16
1 files changed, 5 insertions, 11 deletions
diff --git a/locale/nl_langinfo.c b/locale/nl_langinfo.c
index 4c8e628..34772d3 100644
--- a/locale/nl_langinfo.c
+++ b/locale/nl_langinfo.c
@@ -1,5 +1,5 @@
/* User interface for extracting locale-dependent parameters.
- Copyright (C) 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
+ Copyright (C) 1995, 1996, 1997, 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -34,20 +34,14 @@ nl_langinfo (item)
const struct locale_data *data;
if (category < 0 || category >= LC_ALL)
- {
- /* Bogus category: bogus item. */
- __set_errno (EINVAL);
- return NULL;
- }
+ /* Bogus category: bogus item. */
+ return "";
data = *_nl_current[category];
if (index >= data->nstrings)
- {
- /* Bogus index for this category: bogus item. */
- __set_errno (EINVAL);
- return NULL;
- }
+ /* Bogus index for this category: bogus item. */
+ return "";
/* Return the string for the specified item. */
return (char *) data->values[index].string;