From f7501ae6f14a1b27a4f98bdaf4f2aad929cf68b7 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 16 May 2002 06:14:36 +0000 Subject: Update. * stdlib/canonicalize.c (canonicalize): Rename to __realpath and don't define static. Remove old __realpath function. TC1 of POSIX 2001 will allow the second parameter to be NULL. * stdlib/test-canon.c: Comment out test for NULL as second parameter of realpath. * time/offtime.c (__offtime): Set errno if overflow is detected. --- time/offtime.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'time') diff --git a/time/offtime.c b/time/offtime.c index 59f1b2c0e6..c0b1db59bd 100644 --- a/time/offtime.c +++ b/time/offtime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1993, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1993, 1997, 1998, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -16,6 +16,7 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ +#include #include #define SECS_PER_HOUR (60 * 60) @@ -73,7 +74,11 @@ __offtime (t, offset, tp) } tp->tm_year = y - 1900; if (tp->tm_year != y - 1900) - return 0; + { + /* The year cannot be represented due to overflow. */ + __set_errno (EOVERFLOW); + return 0; + } tp->tm_yday = days; ip = __mon_yday[__isleap(y)]; for (y = 11; days < (long int) ip[y]; --y) -- cgit v1.2.1