]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 27 Jan 1999 09:57:05 +0000 (09:57 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 27 Jan 1999 09:57:05 +0000 (09:57 +0000)
* time/strptime.c (strptime_internal, case 's'): Initialize secs
to zero.  Patch by Bruce Elliott <bde@nwlink.com>.

1999-01-27  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>

* elf/Makefile (extra-objs): Add test modules objects.

1999-01-27  Ulrich Drepper  <drepper@cygnus.com>

ChangeLog
FAQ
elf/Makefile
time/strptime.c

index e67e2fd37e60c33db3ad5000f07c8d49e5d3c388..78fc7cce872c0a2d3ca6ea594c8959241d6518d1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+1999-01-27  Ulrich Drepper  <drepper@cygnus.com>
+
+       * time/strptime.c (strptime_internal, case 's'): Initialize secs
+       to zero.  Patch by Bruce Elliott <bde@nwlink.com>.
+
+1999-01-27  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
+
+       * elf/Makefile (extra-objs): Add test modules objects.
+
 1999-01-27  Ulrich Drepper  <drepper@cygnus.com>
 
        * wctype/wcextra.c: Declare __ctype32_b.
diff --git a/FAQ b/FAQ
index 0437aa67001882cf9b40cd2c21d75d48760e0096..bbc2b1b81c21efc0c555b654e8ff8ae584303121 100644 (file)
--- 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
index 6142848be9e671a0ecd15eaee7bf7cbeead4b49e..e98fa40e0dfe8e8c367f8d5f0c89f865da854a9c 100644 (file)
@@ -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)
 \f
-modules-names = testobj1 testobj2 testobj3 testobj4 testobj5 testobj6 \
-               testobj1_1 failobj
 test-modules = $(addprefix $(objpfx),$(addsuffix .so,$(modules-names)))
 generated += $(test-modules)
 
index f4b954dfe9f7ac657aac4749a37909fcf19dfdaa..26f77ebbdde144aa9291e45988f2f92e5bb5db9b 100644 (file)
@@ -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 <drepper@cygnus.com>, 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;