mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 20:00:19 +02:00
(scm_setlocale): Force errno=EINVAL for an error, since
POSIX and C99 don't document errno being set. Reported by Bruno Haible.
This commit is contained in:
parent
edfc07b3e1
commit
41b74b7dbb
1 changed files with 8 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2002, 2003, 2004 Free Software Foundation, Inc.
|
/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
@ -1374,7 +1374,13 @@ SCM_DEFINE (scm_setlocale, "setlocale", 1, 1, 0,
|
||||||
|
|
||||||
rv = setlocale (scm_i_to_lc_category (category, 1), clocale);
|
rv = setlocale (scm_i_to_lc_category (category, 1), clocale);
|
||||||
if (rv == NULL)
|
if (rv == NULL)
|
||||||
SCM_SYSERROR;
|
{
|
||||||
|
/* POSIX and C99 don't say anything about setlocale setting errno, so
|
||||||
|
force a sensible value here. glibc leaves ENOENT, which would be
|
||||||
|
fine, but it's not a documented feature. */
|
||||||
|
errno = EINVAL;
|
||||||
|
SCM_SYSERROR;
|
||||||
|
}
|
||||||
|
|
||||||
scm_frame_end ();
|
scm_frame_end ();
|
||||||
return scm_from_locale_string (rv);
|
return scm_from_locale_string (rv);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue