This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch release/2.27/master in repository glibc.
from daf88b1dd1 Add NEWS entry for CVE-2020-6096 (bug 25620) new e075046743 Add NEWS entry for CVE-2020-1751 (bug 25423) new 59420258af Avoid ldbl-96 stack corruption from range reduction of pseud [...] new 4b8628acab math/test-sinl-pseudo: Use stack protector only if available new 477587c75e Add NEWS entry for CVE-2020-10029 (bug 25487) new 8b84316420 Fix iconv buffer handling with IGNORE error handler (bug #18830) new 711f183508 support: Implement TEST_COMPARE_STRING new 62df32d604 support: Fix printf format for TEST_COMPARE_STRING new 222b1517cd support: Correct error message for TEST_COMPARE_STRING new 68d583bb1c Add Transliterations for Unicode Misc. Mathematical Symbols- [...] new bdaa594506 support: Add xsetlocale function new ec51be40c7 Rewrite iconv option parsing [BZ #19519] new 8fb94f8824 Add NEWS entry for CVE-2016-10228 (bug 19519) new 670c675da3 intl: Handle translation output codesets with suffixes [BZ #26383] new d8ae6c00a9 iconv: Accept redundant shift sequences in IBM1364 [BZ #26224] new 5fa7884e25 iconv: Fix incorrect UCS4 inner loop bounds (BZ#26923) new 3668134a9e Add NEWS entry for CVE-2020-29562 (BZ #26923) new 2777e19c05 nscd: Fix use-after-free in addgetnetgrentX [BZ #23520] new c49cbcdc32 nscd: Fix double free in netgroupcache [BZ #27462] new 73886db621 wordexp: handle overflow in positional parameter number (bug 28011)
The 19 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: ChangeLog | 51 +++++ NEWS | 41 ++++ iconv/Makefile | 18 +- iconv/Versions | 3 + iconv/gconv_charset.c | 228 +++++++++++++++++++ iconv/gconv_charset.h | 34 ++- iconv/gconv_int.h | 40 +++- iconv/gconv_open.c | 64 ++---- iconv/gconv_simple.c | 48 ++-- iconv/iconv_open.c | 46 +--- iconv/iconv_prog.c | 63 ++---- iconv/skeleton.c | 35 ++- iconv/tst-iconv-opt.c | 347 +++++++++++++++++++++++++++++ iconv/tst-iconv7.c | 55 +++++ iconv/tst-iconv8.c | 50 +++++ iconv/tst-iconv_prog.sh | 284 +++++++++++++++++++++++ iconvdata/ibm1364.c | 14 +- intl/dcigettext.c | 16 +- intl/tst-codeset.c | 34 ++- localedata/Makefile | 4 +- localedata/locales/translit_neutral | 52 ++++- localedata/tst-iconv-math-trans.c | 104 +++++++++ nscd/netgroupcache.c | 46 ++-- posix/wordexp-test.c | 1 + posix/wordexp.c | 2 +- support/Makefile | 3 + support/check.h | 13 ++ support/support.h | 1 + support/support_test_compare_string.c | 91 ++++++++ support/tst-test_compare_string.c | 107 +++++++++ support/xsetlocale.c | 30 +++ sysdeps/ieee754/ldbl-96/Makefile | 5 +- sysdeps/ieee754/ldbl-96/e_rem_pio2l.c | 12 + sysdeps/ieee754/ldbl-96/test-sinl-pseudo.c | 41 ++++ sysdeps/s390/multiarch/gconv_simple.c | 6 +- 35 files changed, 1761 insertions(+), 228 deletions(-) create mode 100644 iconv/gconv_charset.c create mode 100644 iconv/tst-iconv-opt.c create mode 100644 iconv/tst-iconv7.c create mode 100644 iconv/tst-iconv8.c create mode 100644 iconv/tst-iconv_prog.sh create mode 100644 localedata/tst-iconv-math-trans.c create mode 100644 support/support_test_compare_string.c create mode 100644 support/tst-test_compare_string.c create mode 100644 support/xsetlocale.c create mode 100644 sysdeps/ieee754/ldbl-96/test-sinl-pseudo.c