public inbox for libc-locales@sourceware.org
 help / color / mirror / Atom feed
* [Bug localedata/14247] New: newlocale doesn't always set errno upon failure return
@ 2012-06-15  3:49 law at redhat dot com
  2014-06-19 14:44 ` [Bug localedata/14247] " fweimer at redhat dot com
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: law at redhat dot com @ 2012-06-15  3:49 UTC (permalink / raw)
  To: libc-locales

http://sourceware.org/bugzilla/show_bug.cgi?id=14247

             Bug #: 14247
           Summary: newlocale doesn't always set errno upon failure return
           Product: glibc
           Version: 2.15
            Status: NEW
          Severity: normal
          Priority: P2
         Component: localedata
        AssignedTo: unassigned@sourceware.org
        ReportedBy: law@redhat.com
                CC: libc-locales@sources.redhat.com
    Classification: Unclassified


Created attachment 6449
  --> http://sourceware.org/bugzilla/attachment.cgi?id=6449
Potential fix

newlocale() neglects to set errno to an appropriate value when failing, if it
has already been asked about the same incorrect locale name.

#include <stdio.h>
#include <errno.h>
#include <locale.h>

int
main(int argc, char **argv)
{
  locale_t loc;

  setlocale(LC_ALL, "C");

  errno = 0;
  loc = newlocale(LC_COLLATE_MASK | LC_CTYPE_MASK,
          "nb_no.utf8",
          0);
  printf("result = %p errno = %d\n", loc, errno);

  errno = 0;
  loc = newlocale(LC_COLLATE_MASK | LC_CTYPE_MASK,
          "nb_no.utf8",
          0);
  printf("result = %p errno = %d\n", loc, errno);

  return 0;
}


Actual results:
result = (nil) errno = 2
result = (nil) errno = 0

Expected results:
result = (nil) errno = 2
result = (nil) errno = 2     (or at least something other than 0)

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2024-02-27 15:41 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-15  3:49 [Bug localedata/14247] New: newlocale doesn't always set errno upon failure return law at redhat dot com
2014-06-19 14:44 ` [Bug localedata/14247] " fweimer at redhat dot com
2015-08-27 22:00 ` [Bug locale/14247] " jsm28 at gcc dot gnu.org
2021-05-23 17:43 ` kristian.spangsege at gmail dot com
2023-12-01 13:35 ` carlos at redhat dot com
2023-12-01 17:12 ` carlos at redhat dot com
2023-12-01 17:26 ` schwab@linux-m68k.org
2023-12-01 17:39 ` carlos at redhat dot com
2024-02-27 15:36 ` carlos at redhat dot com
2024-02-27 15:39 ` carlos at redhat dot com
2024-02-27 15:40 ` carlos at redhat dot com
2024-02-27 15:41 ` carlos at redhat dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).