diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-04-30 12:00:39 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-04-30 12:00:39 +0530 |
commit | bc8f194c8c29e46e8ee4034f06e46988dfff38f7 (patch) | |
tree | fce0fda2012a3d78d9557afc4a4f5bbe5fa9ee4c /NEWS | |
parent | 1cdeb2372ddecac0dfe0c132a033e9590ffa07d2 (diff) | |
download | glibc-bc8f194c8c29e46e8ee4034f06e46988dfff38f7.tar.gz glibc-bc8f194c8c29e46e8ee4034f06e46988dfff38f7.tar.xz glibc-bc8f194c8c29e46e8ee4034f06e46988dfff38f7.zip |
Initialize all of datahead structure in nscd (BZ #16791)
The datahead structure has an unused padding field that remains uninitialized. Valgrind prints out a warning for it on querying a netgroups entry. This is harmless, but is a potential data leak since it would result in writing out an uninitialized byte to the cache file. Besides, this happens only when there is a cache miss, so we're not adding computation to any fast path.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/NEWS b/NEWS index 10d2626088..953f5ee253 100644 --- a/NEWS +++ b/NEWS @@ -15,7 +15,7 @@ Version 2.20 16632, 16634, 16639, 16642, 16648, 16649, 16670, 16674, 16677, 16680, 16683, 16689, 16695, 16701, 16706, 16707, 16712, 16713, 16714, 16731, 16739, 16740, 16743, 16754, 16758, 16759, 16760, 16770, 16786, 16789, - 16799, 16800, 16815, 16823, 16824, 16831, 16838, 16854. + 16791, 16799, 16800, 16815, 16823, 16824, 16831, 16838, 16854. * Running the testsuite no longer terminates as soon as a test fails. Instead, a file tests.sum (xtests.sum from "make xcheck") is generated, |