summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-09-01 10:35:19 +0000
committerUlrich Drepper <drepper@redhat.com>1998-09-01 10:35:19 +0000
commit6a805a0b401e2ffbdc55404d8b741fd94d0f4deb (patch)
tree187589c01dfb2cfad68403d36b0c792e13abd75e
parent7afab53d438e9fdc3060c20cf855235aa5ef6f49 (diff)
Fix typo.
* sysdeps/i386/pt-machine.h: Likewise.
-rw-r--r--elf/dl-close.c1
-rw-r--r--linuxthreads/ChangeLog2
2 files changed, 2 insertions, 1 deletions
diff --git a/elf/dl-close.c b/elf/dl-close.c
index bbbeed8e58..0851e20193 100644
--- a/elf/dl-close.c
+++ b/elf/dl-close.c
@@ -144,6 +144,7 @@ _dl_close (struct link_map *map)
/* We will unlink the first object only if this is a statically
linked program. */
assert (imap->l_prev != NULL);
+ imap->l_prev->l_next = imap->l_next;
#else
if (imap->l_prev != NULL)
imap->l_prev->l_next = imap->l_next;
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog
index 66847d4416..45d06abc6c 100644
--- a/linuxthreads/ChangeLog
+++ b/linuxthreads/ChangeLog
@@ -1,7 +1,7 @@
1998-08-31 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/i386/i686/pt-machine.h (testandset): Add memory clobber.
- * sysdeps/i386/pt-machine.h: Likewise
+ * sysdeps/i386/pt-machine.h: Likewise.
Suggested by Roland McGrath.
1998-08-28 13:58 Ulrich Drepper <drepper@cygnus.com>