This is the mail archive of the glibc-bugs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug libc/18470] fnmatch strnlen namespace


https://sourceware.org/bugzilla/show_bug.cgi?id=18470

--- Comment #1 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  f014e87eff1c9935a8bd9f7b7ab66ff5ef562ee9 (commit)
      from  aca6ea6586fb2368e6659388f55ba3d374913a86 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=f014e87eff1c9935a8bd9f7b7ab66ff5ef562ee9

commit f014e87eff1c9935a8bd9f7b7ab66ff5ef562ee9
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Wed Jun 3 13:58:58 2015 +0000

    Fix fnmatch strnlen namespace (bug 18470).

    fnmatch brings in references to strnlen, which isn't in all the
    standards that contain fnmatch (not added until the 2008 edition of
    POSIX), resulting in linknamespace test failures.  (This is contrary
    to glibc conventions, rather than a standards conformance issue,
    because of the str* reservation.)  This patch fixes this in the usual
    way, using __strnlen instead of strnlen.

    Tested for x86_64 and x86 (testsuite, and that installed stripped
    shared libraries are unchanged by the patch).

        [BZ #18470]
        * posix/fnmatch.c (fnmatch) [_LIBC]: Call __strnlen instead of
        strnlen.
        * conform/Makefile (test-xfail-XPG3/fnmatch.h/linknamespace):
        Remove variable.
        (test-xfail-XPG4/fnmatch.h/linknamespace): Likewise.
        (test-xfail-POSIX/fnmatch.h/linknamespace): Likewise.
        (test-xfail-POSIX/glob.h/linknamespace): Likewise.
        (test-xfail-POSIX/wordexp.h/linknamespace): Likewise.
        (test-xfail-UNIX98/fnmatch.h/linknamespace): Likewise.
        (test-xfail-UNIX98/glob.h/linknamespace): Likewise.
        (test-xfail-UNIX98/wordexp.h/linknamespace): Likewise.
        (test-xfail-XOPEN2K/fnmatch.h/linknamespace): Likewise.
        (test-xfail-XOPEN2K/glob.h/linknamespace): Likewise.
        (test-xfail-XOPEN2K/wordexp.h/linknamespace): Likewise.

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog        |   16 ++++++++++++++++
 NEWS             |    2 +-
 conform/Makefile |   11 -----------
 posix/fnmatch.c  |    4 ++--
 4 files changed, 19 insertions(+), 14 deletions(-)

-- 
You are receiving this mail because:
You are on the CC list for the bug.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]