about summary refs log tree commit diff
path: root/NEWS
Commit message (Collapse)AuthorAgeFilesLines
* Fix error_tail overflow in allocation calculation.Ondřej Bílka2013-10-141-5/+5
|
* Correctly copy resolver address. Fixes bug #13028.Ondřej Bílka2013-10-141-6/+7
|
* ldd: make try_trace more robust and portablePatrick 'P. J.' McDermott2013-10-141-7/+6
| | | | | | | | | | | | | | | | | | | | | | | It was noted in 2005 (BZ #832), 2006 (BZ #3266), and 2007 [1] that ldd fails on shells other than Bash >= 3.0 because of the pipefail option around try_trace (added on 2004-12-08). EGLIBC was patched in 2008 [2] (r6912) to make the pipefail check run only on shells that support it, but RTLD output would still be lost on other shells with certain SELinux policies. This patch rewrites try_trace to work on any POSIX-conformant shell in such a way as to also work with such SELinux policies. It also obviates one difference between glibc and EGLIBC. URL: https://sourceware.org/ml/libc-alpha/2007-01/msg00041.html URL: http://www.eglibc.org/archives/patches/msg00526.html 2013-09-11 P. J. McDermott <pj@pehjota.net> [BZ #832] * elf/ldd.bash.in (try_trace): More robustly and portably work around SELinux terminal write permissions by using a command substitution instead of a pipeline and pipefail option.
* Fix typos.Yuri Chornoivan2013-10-121-4/+4
|
* Fix typo in setlocale.c. Fixes BZ #15764Reuben Thomas2013-10-121-4/+5
|
* soft-fp: make __unord* raise "invalid" for signaling NaNs (bug 16036).Joseph Myers2013-10-121-1/+1
|
* soft-fp: make ordered comparisons raise "invalid" for quiet NaNs (bug 14910).Joseph Myers2013-10-121-6/+6
|
* soft-fp: fix _FP_DIV_MEAT_* returning results with wrong exponent (bug 16032).Joseph Myers2013-10-121-1/+1
|
* Fix fwrite() reading beyond end of buffer in error pathEric Biggers2013-10-111-6/+6
| | | | | | | | | | | Partially revert commits 2b766585f9b4ffabeef2f36200c275976b93f2c7 and de2fd463b1c0310d75084b6d774fb974075a4ad9, which were intended to fix BZ#11741 but caused another, likely worse bug, namely that fwrite() and fputs() could, in an error path, read data beyond the end of the specified buffer, and potentially even write this data to the file. Fix BZ#11741 properly by checking the return value from _IO_padn() in stdio-common/vfprintf.c.
* soft-fp: fix negation NaN handling (bug 16034).Joseph Myers2013-10-101-1/+1
|
* Update gethostbyname2_r documentation. Fixes bug #156.Yogesh Chaudhari2013-10-081-2/+1
|
* Mention powerpc64le support in NEWS and README, plus bugs fixed.Alan Modra2013-10-051-5/+7
| | | | | * NEWS: Mention powerpc64le support and bugs fixed. * README: Both big-endian and little-endian powerpc64 supported.
* Copy / modify pap_AN into pap_AW and pap_CW.Chris Leonard2013-10-041-7/+10
|
* 2013-09-26 Steve Ellcey <sellcey@mips.com>Steve Ellcey2013-10-031-5/+5
| | | | | | | | | | [BZ #15632] * sysdeps/mips/mips32/fpu/e_sqrt.c: New. * sysdeps/mips/mips32/fpu/e_sqrtf.c: New. * sysdeps/mips/mips64/n32/fpu/e_sqrt.c: New. * sysdeps/mips/mips64/n32/fpu/e_sqrtf.c: New. * sysdeps/mips/mips64/n64/fpu/e_sqrt.c: New. * sysdeps/mips/mips64/n64/fpu/e_sqrtf.c: New.
* BZ #431 Fix manual of strncat/wcsncat.Ondřej Bílka2013-10-031-5/+6
|
* Mention bug 15760 in NEWS (duplicate of 15988, just added to NEWS)Chris Metcalf2013-10-011-4/+4
|
* Fix PI mutex check in pthread_cond_broadcast and pthread_cond_signalSiddhesh Poyarekar2013-10-011-1/+1
| | | | | | | | Fixes BZ #15988. The check had a typo - it checked for PTHREAD_MUTEX_ROBUST_NP instead of PTHREAD_MUTEX_ROBUST_NORMAL_NP. It has now been replaced by the already existing convenience macro USE_REQUEUE_PI.
* Properly cache the result from looking up the nss database configAndreas Schwab2013-09-301-5/+5
|
* Revert "Remove references to non-existent content items in install.texi"Allan McRae2013-09-281-2/+2
| | | | | | | | This reverts commit 583c76a7ce305d24e0625a22caed317b3e001d91 which breaks building info pages during "make install". Conflicts: ChangeLog
* Remove references to non-existent content items in install.texiAllan McRae2013-09-271-2/+2
| | | | | These were left in when the installation section was split out into its own file.
* Version 1.2 of gd_GB localeMichael Bauer2013-09-251-4/+7
|
* Add localedef --big-endian and --little-endian options.Joseph Myers2013-09-241-0/+4
|
* New locale for cmn_TWWei-Lun Chao2013-09-231-5/+5
|
* New locale for hak_TWWei-Lun Chao2013-09-231-5/+5
|
* New locale for lzh_TWWei-Lun Chao2013-09-231-4/+4
|
* New locale for nan_TWWei-Lun Chao2013-09-231-5/+5
|
* Check for integer overflow in cache size computation in strcollSiddhesh Poyarekar2013-09-231-0/+6
| | | | | | | | | | | strcoll is implemented using a cache for indices and weights of collation sequences in the strings so that subsequent passes do not have to search through collation data again. For very large string inputs, the cache size computation could overflow. In such a case, use the fallback function that does not cache indices and weights of collation sequences. Fixes CVE-2012-4412.
* Fall back to non-cached sequence traversal and comparison on malloc failSiddhesh Poyarekar2013-09-231-4/+10
| | | | | | | | strcoll currently falls back to alloca if malloc fails, resulting in a possible stack overflow. This patch implements sequence traversal and comparison without caching indices and rules. Fixes CVE-2012-4424.
* BZ #15754: CVE-2013-4788Carlos O'Donell2013-09-231-3/+9
| | | | | | | | | | | | The pointer guard used for pointer mangling was not initialized for static applications resulting in the security feature being disabled. The pointer guard is now correctly initialized to a random value for static applications. Existing static applications need to be recompiled to take advantage of the fix. The test tst-ptrguard1-static and tst-ptrguard1 add regression coverage to ensure the pointer guards are sufficiently random and initialized to a default value.
* New locale for ak_GH.Chris Leonard2013-09-211-3/+3
|
* correct bug list in NEWSChris Leonard2013-09-211-3/+2
|
* [BZ #15859] Fix memory leak in _dl_map_object_depsVinitha Vijayan2013-09-211-4/+5
|
* Mention malloc probes in the NEWS file.Alexandre Oliva2013-09-201-0/+2
| | | | | | for ChangeLog * NEWS: Mention malloc probes.
* Copy-edit NEWS and fixup ChangeLog entries.Carlos O'Donell2013-09-201-4/+5
|
* Update Changelog and NEWSChris Leonard2013-09-201-3/+7
|
* Add BZ #15640 to resolved bug list in NEWS.Maxim Kuvyrkov2013-09-191-3/+3
|
* Fix powerpc fpu_control.h namespace and parenthesis issues (bug 15966).Joseph Myers2013-09-171-1/+1
|
* Add CVE-2013-4332 to NEWS.Will Newton2013-09-131-0/+5
|
* Mention closing 15855, 15856 and 15857 in NEWS.Will Newton2013-09-111-2/+2
|
* Clarify documentation cross-referenceAllan McRae2013-09-101-3/+3
| | | | | | | | | | | The end of the "Parsing of Floats" subsection currently reads: The GNU C Library also provides '_l' versions of these functions, which take an additional argument, the locale to use in conversion. *Note Parsing of Integers::. Split the final note as it is unrelated to the above comment and reference it with "See also" instead.
* Update pt_chown sections of the manualAllan McRae2013-09-101-2/+2
| | | | | | | The pt-chown binary is discussed in the "Running make install" section without clarification of the needed configure option. Clarify this and simplfy the discription which is already covered in the "Configuring and compiling" section.
* Fix typo in strcoll exampleAllan McRae2013-09-091-1/+1
|
* Fix memory leak in stdlib/isomac.cAllan McRae2013-09-091-1/+2
|
* Fix memory leaks in libio on allocation failureAllan McRae2013-09-091-1/+1
|
* Fix nesting of ifdefs in netgroupcache.cAllan McRae2013-09-091-1/+1
| | | | Fixes unclosed '{' if HAVE_SENDFILE is defined (BZ #15895).
* Update to latest versions of GPL-2.0 and LGPL-2.1Allan McRae2013-09-091-2/+2
| | | | | | | | | | Pull copies of these files directly from the GNU website: http://www.gnu.org/licenses/gpl-2.0.txt http://www.gnu.org/licenses/lgpl-2.1.txt Fixes the address of the Free Software Foundation (BZ #15844). Also includes some minor formatting changes and corrects references to the GNU "Library" General Public License.
* Mention --disable-versioning removal in NEWS.Joseph Myers2013-09-071-0/+3
|
* Update iso-1427.def and related occurrences.Chris Leonard2013-09-041-0/+2
|
* Add country_car field to LC_ADDRESScjl2013-09-041-0/+3
|
* Fix lgammaf spurious underflow (bug 15427).Joseph Myers2013-09-031-2/+2
|