diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-09 16:45:21 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-09 16:45:21 +0000 |
commit | b511d8fc6b63fc7555c88bd4ab7001dd3d51c3d1 (patch) | |
tree | a3ef704aaab9188ca62412ea4754120ed852d6b7 /elf | |
parent | 8aa8fc7fd04778b9162648929a9805aba678502a (diff) | |
download | glibc-b511d8fc6b63fc7555c88bd4ab7001dd3d51c3d1.zip glibc-b511d8fc6b63fc7555c88bd4ab7001dd3d51c3d1.tar.gz glibc-b511d8fc6b63fc7555c88bd4ab7001dd3d51c3d1.tar.bz2 |
Update.
2000-06-09 Jes Sorensen <jes@linuxcare.com>
* elf/dl-libc.c (__libc_dlsym): Use DL_SYMBOL_ADDRESS() to obtain
the address of a symbol so function pointers are handled properly.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/dl-libc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/dl-libc.c b/elf/dl-libc.c index 07aae9c..c95935f 100644 --- a/elf/dl-libc.c +++ b/elf/dl-libc.c @@ -111,7 +111,7 @@ __libc_dlsym (void *__map, const char *__name) args.name = __name; return (dlerror_run (do_dlsym, &args) ? NULL - : (void *) (args.loadbase + args.ref->st_value)); + : (void *) (DL_SYMBOL_ADDRESS (args.loadbase, args.ref))); } int |