diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-04-05 05:29:26 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-04-05 05:29:26 +0000 |
commit | b53df4c940bdfb4a23e065c7b3a919b4ed054f03 (patch) | |
tree | bce7ee6a6eb5cb69304b420bf20647656bb4e344 /sysdeps/unix/sysv/aix/dl-open.c | |
parent | 817a51e296ac7335b8e161756dbc18012f86f4cd (diff) | |
download | glibc-b53df4c940bdfb4a23e065c7b3a919b4ed054f03.tar.gz glibc-b53df4c940bdfb4a23e065c7b3a919b4ed054f03.tar.xz glibc-b53df4c940bdfb4a23e065c7b3a919b4ed054f03.zip |
Update.
* sysdeps/unix/sysv/aix/dl-libc.c: Don't use the ELF version, define simple replacements here. Patch by Michael Keezer. * sysdeps/ieee754/ldbl-128/e_logl.c: New file. * sysdeps/ieee754/ldbl-96/e_asinl.c: New file. Contributed by Stephen L Moshier <moshier@mediaone.net>.
Diffstat (limited to 'sysdeps/unix/sysv/aix/dl-open.c')
-rw-r--r-- | sysdeps/unix/sysv/aix/dl-open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/aix/dl-open.c b/sysdeps/unix/sysv/aix/dl-open.c index 0189ab465d..ba8e2bf298 100644 --- a/sysdeps/unix/sysv/aix/dl-open.c +++ b/sysdeps/unix/sysv/aix/dl-open.c @@ -85,7 +85,7 @@ _dl_open (const char *file, int mode, const void *caller) { bsize *= 2; dl_info = realloc (dl_info, bsize); - if (new_dl_info == NULL) + if (dl_info == NULL) { (void) __unload ((void *) handle); errno = ENOMEM; |