diff options
author | Zack Weinberg <zackw@panix.com> | 2015-08-14 09:21:44 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-08-14 22:40:19 -0400 |
commit | 8ff5e0ec497613e578219c9c3d49053c550b9269 (patch) | |
tree | d35487ff0ad78c4f404883dcb2a0f7835a85137e /NEWS | |
parent | 739babd775d4b69525e3494cad4310742a9b360a (diff) | |
download | glibc-8ff5e0ec497613e578219c9c3d49053c550b9269.tar.gz glibc-8ff5e0ec497613e578219c9c3d49053c550b9269.tar.xz glibc-8ff5e0ec497613e578219c9c3d49053c550b9269.zip |
stpncpy: fix size checking [BZ #18975]
I think the last clause of the conditional, || __n <= __bos (__dest) may be backward. The code should call the runtime-checking function if __n is not constant, or if __n is known to be LARGER than the size of the destination.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/NEWS b/NEWS index 088969c3b8..fbbcddb1dd 100644 --- a/NEWS +++ b/NEWS @@ -10,8 +10,8 @@ Version 2.23 * The following bugs are resolved with this release: 16517, 16519, 16520, 16734, 17905, 18086, 18265, 18480, 18525, 18618, - 18647, 18661, 18674, 18778, 18781, 18787, 18789, 18790, 18820, 18824. - + 18647, 18661, 18674, 18778, 18781, 18787, 18789, 18790, 18820, 18824, + 18975. Version 2.22 |