Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-11-17 | Correct wae_CH to UTF-8 encoding. | Chris Leonard | |
2013-11-16 | Fix spurious "inexact" exceptions from x86 pow with NaN argument (bug 16167). | Joseph Myers | |
2013-11-15 | New locale for the_NP. | Arun Kumar Pyasi | |
2013-11-14 | [BZ #16143] pap_* locales have duplicated LC_NUMERIC section. | Chris Leonard | |
2013-11-14 | [BZ #16103] LC_MEASUREMENT review and standardization | Chris Leonard | |
2013-11-13 | Set arch_minimum_kernel to 3.4.0 for x32 | H.J. Lu | |
x32 ABI support was added in Linux kernel 3.4.0. | |||
2013-11-13 | Fix strtod rounding of half the least subnormal (bug 16151). | Joseph Myers | |
2013-11-13 | PowerPC: Fix __fe_mask_env export | Adhemerval Zanella | |
This patch does not export __fe_mask_env anymore, only providing a compatibility symbol. It fixes BZ#14143. | |||
2013-11-12 | Fix sparc 64-bit GMP ifunc resolution in static builds. | David S. Miller | |
[BZ #16150] * sysdeps/sparc/sparc64/multiarch/add_n.S: Resolve to the correct generic symbol in the non-vis3 case in static builds. * sysdeps/sparc/sparc64/multiarch/addmul_1.S: Likewise. * sysdeps/sparc/sparc64/multiarch/mul_1.S: Likewise. * sysdeps/sparc/sparc64/multiarch/sub_n.S: Likewise. * sysdeps/sparc/sparc64/multiarch/submul_1.S: Likewise. | |||
2013-11-11 | Put Bug # to the NEWS file for the previous vDSO l_name fix. | Jan Kratochvil | |
2013-11-11 | Fix off-by-one in nscd getservbyport call | Andreas Schwab | |
2013-11-07 | Make getent services compliant with RFC 6335 section 5.1 Fixes bug 15374 | Ondřej Bílka | |
The RFC 6335 allows services that start with digit (like 3com-tsmux). These were parsed as port number which this patch fixes. | |||
2013-11-06 | Fix build on pre-v9 32-bit Sparc. | David S. Miller | |
We cannot use fnegd in this code, as fnegd was added in v9. Only fnegs exists in v8 and earlier. [BZ #15985] * sysdeps/sparc/sparc32/fpu/s_fdim.S (__fdim): Do not use fnegd on pre-v9 cpus, use a fnegs+fmovs sequence instead. | |||
2013-11-01 | Fix malloc_info statistic. Fixes bug 16112 | Ondřej Bílka | |
2013-11-01 | Fix description of random according to POSIX. Fixes bug 7003 | Bruno Haible | |
2013-10-31 | Restrict shm_open and shm_unlink to SHMDIR. Fixes bugs 14752 and 15763. | Ondřej Bílka | |
2013-10-31 | Refill NEWS | Andreas Schwab | |
2013-10-31 | Fix parsing of 0e+0 as float | Andreas Schwab | |
2013-10-31 | Accept make versions 4.0 and greater | Marc-Antoine Perennou | |
2013-10-30 | Use atomic operations to track memory. Fixes bug 11087 | Ondřej Bílka | |
2013-10-30 | Remove code from div that is by C99 obsolete. Fixes bug 15799 | Ondřej Bílka | |
2013-10-30 | Fix reads for sizes larger than INT_MAX in AF_INET lookup | Siddhesh Poyarekar | |
Currently for AF_INET lookups from the hosts file, buffer sizes larger than INT_MAX silently overflow and may result in access beyond bounds of a buffer. This happens when the number of results in an AF_INET lookup in /etc/hosts are very large. There are two aspects to the problem. One problem is that the size computed from the buffer size is stored into an int, which results in overflow for large sizes. Additionally, even if this size was expanded, the function used to read content into the buffer (fgets) accepts only int sizes. As a result, the fix is to have a function wrap around fgets that calls it multiple times with int sizes if necessary. | |||
2013-10-30 | Add ChangeLog entry and fix NEWS for #16078 | Siddhesh Poyarekar | |
2013-10-30 | Add missing bug number to NEWS | Allan McRae | |
2013-10-29 | New-locale-for-anp_IN | Chris Leonard | |
2013-10-26 | Add some more NEWS items. | Joseph Myers | |
2013-10-25 | Fix gethostbyname_r example. Fixes bug 2801. | Ondřej Bílka | |
2013-10-25 | Make strptime %Z consistent between doc and code. Fixes bug 14876 | Ondřej Bílka | |
2013-10-25 | Acknowledge that fnmatch can fail. Fixes bug 14029. | Ondřej Bílka | |
2013-10-25 | Document that mmap() returns MAP_FAILED on error, as per the POSIX standard. | Fabrice Bauzac | |
2013-10-25 | Fix stack overflow due to large AF_INET6 requests | Siddhesh Poyarekar | |
Resolves #16072 (CVE-2013-4458). This patch fixes another stack overflow in getaddrinfo when it is called with AF_INET6. The AF_UNSPEC case was fixed as CVE-2013-1914, but the AF_INET6 case went undetected back then. | |||
2013-10-21 | Document rpcgen -5. Fixes bug 15825 | Ondřej Bílka | |
2013-10-20 | When glob pattern contains a trailing slash match only directories. Fixes ↵ | Ondřej Bílka | |
bug 10278. | |||
2013-10-20 | Replace alloca in __tzfile_read by malloc. Fixes bug 15670 | Ondřej Bílka | |
2013-10-18 | Remove duplicate bug numbers from NEWS. | Joseph Myers | |
2013-10-18 | Fix localedef collation handling of <U0000> (bug 15948). | Richard Sandiford | |
2013-10-17 | Fix inet_network("1 bar"). Fixes bug 15277. | Ondřej Bílka | |
2013-10-17 | Don't use gethostbyaddr to determine canonical name | Andreas Schwab | |
2013-10-17 | soft-fp: make extensions quiet signaling NaNs (bug 16041). | Joseph Myers | |
2013-10-15 | Clear initfini list after freeing. Fixes bug 15308. | Ondřej Bílka | |
2013-10-14 | Fix error_tail overflow in allocation calculation. | Ondřej Bílka | |
2013-10-14 | Correctly copy resolver address. Fixes bug #13028. | Ondřej Bílka | |
2013-10-14 | ldd: make try_trace more robust and portable | Patrick 'P. J.' McDermott | |
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. | |||
2013-10-12 | Fix typos. | Yuri Chornoivan | |
2013-10-12 | Fix typo in setlocale.c. Fixes BZ #15764 | Reuben Thomas | |
2013-10-12 | soft-fp: make __unord* raise "invalid" for signaling NaNs (bug 16036). | Joseph Myers | |
2013-10-12 | soft-fp: make ordered comparisons raise "invalid" for quiet NaNs (bug 14910). | Joseph Myers | |
2013-10-12 | soft-fp: fix _FP_DIV_MEAT_* returning results with wrong exponent (bug 16032). | Joseph Myers | |
2013-10-11 | Fix fwrite() reading beyond end of buffer in error path | Eric Biggers | |
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. | |||
2013-10-10 | soft-fp: fix negation NaN handling (bug 16034). | Joseph Myers | |