From a25f2023916cf86dca8a1dc89df5518dcbefa11a Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 27 Jan 1999 09:57:05 +0000 Subject: [PATCH] Update. * time/strptime.c (strptime_internal, case 's'): Initialize secs to zero. Patch by Bruce Elliott . 1999-01-27 Andreas Schwab * elf/Makefile (extra-objs): Add test modules objects. 1999-01-27 Ulrich Drepper --- ChangeLog | 9 +++++++++ FAQ | 3 ++- elf/Makefile | 5 +++-- time/strptime.c | 4 ++-- 4 files changed, 16 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index e67e2fd37e..78fc7cce87 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +1999-01-27 Ulrich Drepper + + * time/strptime.c (strptime_internal, case 's'): Initialize secs + to zero. Patch by Bruce Elliott . + +1999-01-27 Andreas Schwab + + * elf/Makefile (extra-objs): Add test modules objects. + 1999-01-27 Ulrich Drepper * wctype/wcextra.c: Declare __ctype32_b. diff --git a/FAQ b/FAQ index 0437aa6700..bbc2b1b81c 100644 --- a/FAQ +++ b/FAQ @@ -1238,7 +1238,8 @@ siginterrupt(). {AJ} glibc 2.1 has special string functions that are faster than the normal library functions. Some of the functions are additionally implemented as -inline functions and others as macros. +inline functions and others as macros. This might lead to problems with +existing codes but it is explicitly allowed by ISO C. The optimized string functions are only used when compiling with optimizations (-O1 or higher). The behavior can be changed with two feature diff --git a/elf/Makefile b/elf/Makefile index 6142848be9..e98fa40e0d 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -78,6 +78,9 @@ install-rootsbin += ldconfig endif tests = loadtest restest1 preloadtest loadfail +modules-names = testobj1 testobj2 testobj3 testobj4 testobj5 testobj6 \ + testobj1_1 failobj +extra-objs += $(modules-names:=.os) ifeq ($(build-shared),yes) libdl = $(objpfx)libdl.so$(libdl.so-version) @@ -206,8 +209,6 @@ $(objpfx)ldd: ldd.bash.in $(common-objpfx)soversions.mk \ $(objpfx)sprof: $(libdl) -modules-names = testobj1 testobj2 testobj3 testobj4 testobj5 testobj6 \ - testobj1_1 failobj test-modules = $(addprefix $(objpfx),$(addsuffix .so,$(modules-names))) generated += $(test-modules) diff --git a/time/strptime.c b/time/strptime.c index f4b954dfe9..26f77ebbdd 100644 --- a/time/strptime.c +++ b/time/strptime.c @@ -1,5 +1,5 @@ /* Convert a string representation of time to a time value. - Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. @@ -537,7 +537,7 @@ strptime_internal (buf, format, tm, decided) the `get_number' macro. Instead read the number character for character and construct the result while doing this. */ - time_t secs; + time_t secs = 0; if (*rp < '0' || *rp > '9') /* We need at least one digit. */ return NULL;