diff options
author | Mike Frysinger <vapier@gentoo.org> | 2016-04-22 17:11:09 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-04-23 16:14:01 -0400 |
commit | b2cae5d3f5f58e26fe3ceb9c9c2a4018e25785e6 (patch) | |
tree | c521f1356dd7d9f6577749d1e8c8492cfbbec068 /localedata/ChangeLog | |
parent | 4964bb4591b16b485eac3c5ecc8a383b528ea1a6 (diff) | |
download | glibc-b2cae5d3f5f58e26fe3ceb9c9c2a4018e25785e6.tar.gz |
tst-fmon/tst-numeric: switch malloc to static stack space [BZ #19671]
The current test code doesn't check the return value of malloc.
This should rarely (if ever) cause a problem, but rather than add
some return value checks, just statically allocate the buffer on
the stack. This will never fail (or if it does, we've got much
bigger problems that don't matter to the test).
Diffstat (limited to 'localedata/ChangeLog')
-rw-r--r-- | localedata/ChangeLog | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/localedata/ChangeLog b/localedata/ChangeLog index 13d1e4709c..9815a9e81e 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -1,5 +1,12 @@ 2016-04-23 Mike Frysinger <vapier@gentoo.org> + [BZ #19671] + * tst-fmon.c (main): Change s from malloc to s[200]. Change 2nd + arg to strfmon from 200 to sizeof (s). + * tst-numeric.c (main): Likewise. + +2016-04-23 Mike Frysinger <vapier@gentoo.org> + * tst-langinfo.sh: Update YESEXPR & NOEXPR baselines to match current locales. |