diff options
author | Andreas Jaeger <aj@suse.de> | 2000-05-26 10:23:45 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-05-26 10:23:45 +0000 |
commit | dc95d1588775854fd5f7e617bfcb6f362bf3a923 (patch) | |
tree | e504b5ae583c53fb4eacf9dd3ef21ef5b6b46724 /elf/ldconfig.h | |
parent | 446e763b48ca29dafd14cb4c65212ac81786b4f0 (diff) | |
download | glibc-dc95d1588775854fd5f7e617bfcb6f362bf3a923.tar.gz glibc-dc95d1588775854fd5f7e617bfcb6f362bf3a923.tar.xz glibc-dc95d1588775854fd5f7e617bfcb6f362bf3a923.zip |
Update.
2000-05-26 Andreas Jaeger <aj@suse.de> * elf/ldconfig.h: Update parameter list for process_elf_file. * sysdeps/unix/sysv/linux/sparc/readelflib.c (process_elf_file): Add parameter file_length and pass it ot process_elf*file. * sysdeps/generic/readelflib.c (check_ptr): New. (process_elf_file): Use check_ptr to check all accesses to the mmapped file. Add parameter file_length. * elf/readlib.c (known_libs): Use <gnu/lib-names.h> to specify library names. * sunrpc/xdr_intXX_t.c (xdr_uint8_t): Fix conversion. Closes PR libc/1573, reported by Bradley White <bww@laurelnetworks.com>.
Diffstat (limited to 'elf/ldconfig.h')
-rw-r--r-- | elf/ldconfig.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/elf/ldconfig.h b/elf/ldconfig.h index ecdbb14883..a94df64ad0 100644 --- a/elf/ldconfig.h +++ b/elf/ldconfig.h @@ -46,7 +46,8 @@ extern int process_file (const char *file_name, const char *lib, int *flag, /* Declared in readelflib.c. */ extern int process_elf_file (const char *file_name, const char *lib, int *flag, - char **soname, void *file_contents); + char **soname, void *file_contents, + size_t file_length); /* Declared in ldconfig.c. */ |