Bug 827510
| Summary: | newlocale() doesn't always set errno upon failure return | |||
|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Tom Lane <tgl> | |
| Component: | glibc | Assignee: | Jeff Law <law> | |
| Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | |
| Severity: | unspecified | Docs Contact: | ||
| Priority: | unspecified | |||
| Version: | 16 | CC: | fweimer, hhorak, jakub, law, pfrankli, schwab | |
| Target Milestone: | --- | |||
| Target Release: | --- | |||
| Hardware: | Unspecified | |||
| OS: | Unspecified | |||
| Whiteboard: | ||||
| Fixed In Version: | Doc Type: | Bug Fix | ||
| Doc Text: | Story Points: | --- | ||
| Clone Of: | ||||
| : | 832516 (view as bug list) | Environment: | ||
| Last Closed: | 2012-06-15 03:52:53 UTC | Type: | Bug | |
| Regression: | --- | Mount Type: | --- | |
| Documentation: | --- | CRM: | ||
| Verified Versions: | Category: | --- | ||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | ||
| Cloudforms Team: | --- | Target Upstream Version: | ||
| Embargoed: | ||||
| Bug Depends On: | ||||
| Bug Blocks: | 832516 | |||
glibc-2.15-47.fc17 has been submitted as an update for Fedora 17. https://admin.fedoraproject.org/updates/glibc-2.15-47.fc17 glibc-2.15-50.fc17 has been submitted as an update for Fedora 17. https://admin.fedoraproject.org/updates/glibc-2.15-50.fc17 glibc-2.15-51.fc17 has been pushed to the Fedora 17 stable repository. If problems still persist, please make note of it in this bug report. |
Description of problem: newlocale() neglects to set errno to an appropriate value when failing, if it has already been asked about the same incorrect locale name. Version-Release number of selected component (if applicable): glibc-2.14.90-24.fc16.7.x86_64 How reproducible: 100% Steps to Reproduce: Run this program: #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) Additional info: The problem appears to be that newlocale relies entirely on failure of an underlying open() call to set errno for such cases. In the case where the "decided" flag is already set, no new open() calls occur, so errno doesn't get set. I read POSIX:2008 to require errno to be set upon failure return: Upon failure, the newlocale() function shall return ( locale_t)0 and set errno to indicate the error.