diff options
author | Peter TB Brett <peter@peter-b.co.uk> | 2014-04-07 21:56:12 +0100 |
---|---|---|
committer | Ondřej Bílka <neleai@seznam.cz> | 2014-04-09 20:09:56 +0200 |
commit | a88ddc902b804a6156f6e5e5feb979754a3e789a (patch) | |
tree | 78aa9baadcac6ec1f08747d270d3fb2f3744c92d /NEWS | |
parent | 01f8eac224421f07f28f91cc05db7459ea433ea4 (diff) | |
download | glibc-a88ddc902b804a6156f6e5e5feb979754a3e789a.zip glibc-a88ddc902b804a6156f6e5e5feb979754a3e789a.tar.gz glibc-a88ddc902b804a6156f6e5e5feb979754a3e789a.tar.bz2 |
Use statvfs64() for pathconf(_PC_NAME_MAX).
pathconf(_PC_NAME_MAX) was implemented on top of statfs(). The 32bit
version therefore fails EOVERFLOW if the filesystem blockcount is
sufficiently large.
Most pathconf() queries use statvfs64(), which avoids this issue. This
patch modifies pathconf(_PC_NAME_MAX) to do likewise.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -9,12 +9,12 @@ Version 2.20 * The following bugs are resolved with this release: - 6804, 13347, 15347, 15804, 15894, 16002, 16198, 16284, 16348, 16349, - 16357, 16362, 16447, 16532, 16545, 16574, 16599, 16600, 16609, 16610, - 16611, 16613, 16623, 16632, 16634, 16639, 16642, 16648, 16649, 16670, - 16674, 16677, 16680, 16683, 16689, 16695, 16701, 16706, 16707, 16712, - 16713, 16714, 16731, 16739, 16743, 16758, 16759, 16760, 16770, 16786, - 16789, 16799, 16800, 16815. + 6804, 13347, 15347, 15514, 15804, 15894, 16002, 16198, 16284, 16348, + 16349, 16357, 16362, 16447, 16532, 16545, 16574, 16599, 16600, 16609, + 16610, 16611, 16613, 16623, 16632, 16634, 16639, 16642, 16648, 16649, + 16670, 16674, 16677, 16680, 16683, 16689, 16695, 16701, 16706, 16707, + 16712, 16713, 16714, 16731, 16739, 16743, 16758, 16759, 16760, 16770, + 16786, 16789, 16799, 16800, 16815. * Running the testsuite no longer terminates as soon as a test fails. Instead, a file tests.sum (xtests.sum from "make xcheck") is generated, |