summaryrefslogtreecommitdiff
path: root/time
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2005-10-14 17:20:58 +0000
committerUlrich Drepper <drepper@redhat.com>2005-10-14 17:20:58 +0000
commit3394d6320b96592d5a718100856e106736c8fcf1 (patch)
treeda4cce44bf218a94411012e17a319c5cead7f50f /time
parentce982312e888ff1fd9b869240951805d281f7517 (diff)
[BZ #1468]
* sysdeps/unix/sysv/linux/x86_64/ucontext_i.h: Fix values for oFPREGS, oSIGMASK, oFPREGSMEM, and oMXCSR. Patch by Nicholas Miell <nmiell@comcast.net>.
Diffstat (limited to 'time')
-rw-r--r--time/bug-asctime_r.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/time/bug-asctime_r.c b/time/bug-asctime_r.c
index 2579a6a3b0..86651ef1c5 100644
--- a/time/bug-asctime_r.c
+++ b/time/bug-asctime_r.c
@@ -13,12 +13,18 @@ do_test (void)
tp->tm_year = 10000 - 1900;
char buf[1000];
errno = 0;
+ buf[26] = '\xff';
char *s = asctime_r (tp, buf);
if (s != NULL || errno != EOVERFLOW)
{
puts ("asctime_r did not fail correctly");
result = 1;
}
+ if (buf[26] != '\xff')
+ {
+ puts ("asctime_r overwrote 27th byte in buffer");
+ result = 1;
+ }
return result;
}