about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-04-12 17:10:48 +0000
committerUlrich Drepper <drepper@redhat.com>1998-04-12 17:10:48 +0000
commit8acdf4fd69b5362bca57b9136b7d243333774484 (patch)
tree68d90ff668b548abedb25ead08fcce07fb72eb65
parentbc38f31f3a1cad7832ce2a272309f6784fb52bec (diff)
downloadglibc-8acdf4fd69b5362bca57b9136b7d243333774484.tar.gz
glibc-8acdf4fd69b5362bca57b9136b7d243333774484.tar.xz
glibc-8acdf4fd69b5362bca57b9136b7d243333774484.zip
Update.
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>.
-rw-r--r--ChangeLog6
-rw-r--r--sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4d2d1cfd82..4bedf13ca2 100644
--- 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
diff --git a/sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c b/sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
index 58dac5f2b6..fa946cf774 100644
--- a/sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
+++ b/sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
@@ -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;				\