Update.
authorUlrich Drepper <drepper@redhat.com>
Sun, 12 Apr 1998 17:10:48 +0000 (17:10 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 12 Apr 1998 17:10:48 +0000 (17:10 +0000)
1998-04-12  Ulrich Drepper  <drepper@cygnus.com>

* sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
(DL_FIND_ARG_COMPONENTS): Always initialize auxv.
Patch by Mark Hatle <fray@kernel.crashing.org>.

ChangeLog
sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c

index 4d2d1cf..4bedf13 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+1998-04-12  Ulrich Drepper  <drepper@cygnus.com>
+
+       * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
+       (DL_FIND_ARG_COMPONENTS): Always initialize auxv.
+       Patch by Mark Hatle <fray@kernel.crashing.org>.
+
 1998-04-12 22:47  Philip Blundell  <Philip.Blundell@pobox.com>
 
        * sysdeps/unix/sysv/linux/bits/socket.h (PF_APPLETALK): Correct
index 58dac5f..fa946cf 100644 (file)
@@ -30,7 +30,7 @@
     for (_tmp = (envp); *_tmp; ++_tmp)                         \
       continue;                                                        \
     /* The following '++' is important!  */                    \
-    ++_tmp;                                                    \
+    (auxp) = ++_tmp;                                           \
     if (*_tmp == 0)                                            \
       {                                                                \
        size_t _test = (size_t)_tmp;                            \