diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2014-04-04 15:03:47 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2014-04-04 15:03:47 -0400 |
commit | d42f3448a7af9c55f2193450964772c7c2a0d29b (patch) | |
tree | 5d66cded12e2480b429805aea7348140f6baaa6b | |
parent | 1c21d115e3e47cd66007341de4bae5c4b0a2d547 (diff) | |
download | glibc-d42f3448a7af9c55f2193450964772c7c2a0d29b.tar glibc-d42f3448a7af9c55f2193450964772c7c2a0d29b.tar.gz glibc-d42f3448a7af9c55f2193450964772c7c2a0d29b.tar.bz2 glibc-d42f3448a7af9c55f2193450964772c7c2a0d29b.zip |
tile: Fix cut-and-paste bug in commit fcccd5128.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/tile/dl-runtime.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2014-04-04 Chris Metcalf <cmetcalf@tilera.com> + + * sysdeps/tile/dl-runtime.c (_dl_unmap): Fix cut-and-paste bug + in function argument name. + 2014-04-03 David Svoboda <svoboda@cert.org> [BZ #5666] diff --git a/sysdeps/tile/dl-runtime.c b/sysdeps/tile/dl-runtime.c index 8bc2911850..bcc00bc74b 100644 --- a/sysdeps/tile/dl-runtime.c +++ b/sysdeps/tile/dl-runtime.c @@ -152,8 +152,8 @@ sim_dlclose (ElfW(Addr) map_start) } void internal_function -_dl_unmap (struct link_map *l) +_dl_unmap (struct link_map *map) { - sim_dlclose (l->l_map_start); + sim_dlclose (map->l_map_start); _dl_unmap_segments (map); } |