_nl_load_locale() incorrectly handles mmap() failures

This commit is contained in:
Joe Landers 2010-01-22 12:44:58 -08:00 committed by Ulrich Drepper
parent aef699dce1
commit 8b2f25c233
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2010-01-22 Ulrich Drepper <drepper@redhat.com>
* locale/loadlocale.c (_nl_load_locale): Fix recognition of genuine
mmap resource problem. Patch by Joe Landers <jlanders@vmware.com>.
2010-01-22 Jim Meyering <jim@meyering.net>
[BZ #11193]

View File

@ -224,6 +224,7 @@ _nl_load_locale (struct loaded_l10nfile *file, int category)
PROT_READ, MAP_FILE|MAP_COPY, fd, 0);
if (__builtin_expect (filedata == MAP_FAILED, 0))
{
filedata = NULL;
if (__builtin_expect (errno, ENOSYS) == ENOSYS)
{
#endif /* _POSIX_MAPPED_FILES */