From 3394d6320b96592d5a718100856e106736c8fcf1 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 14 Oct 2005 17:20:58 +0000 Subject: [BZ #1468] * sysdeps/unix/sysv/linux/x86_64/ucontext_i.h: Fix values for oFPREGS, oSIGMASK, oFPREGSMEM, and oMXCSR. Patch by Nicholas Miell . --- time/bug-asctime_r.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'time') 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; } -- cgit v1.2.3