Update.
* dlfcn/dlerror.c (dlerror): Always create output string which includes object file name.
This commit is contained in:
parent
bb548f63d5
commit
9c99fa3d31
@ -1,5 +1,8 @@
|
||||
2000-12-27 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* dlfcn/dlerror.c (dlerror): Always create output string which
|
||||
includes object file name.
|
||||
|
||||
* sysdeps/alpha/alphaev6/memcpy.S: Don't go through unrolled loop
|
||||
if we would go through it only once.
|
||||
Patch by Rick Gorton <rick.gorton@api-networks.com>.
|
||||
|
@ -69,10 +69,9 @@ dlerror (void)
|
||||
else
|
||||
{
|
||||
buf = (char *) result->errstring;
|
||||
if (result->errcode != 0
|
||||
&& __asprintf (&buf, "%s: %s: %s",
|
||||
result->objname, _(result->errstring),
|
||||
strerror (result->errcode)) != -1)
|
||||
if (__asprintf (&buf, result->errcode != 0 ? "%s: %s: %s" : "%s: %s",
|
||||
result->objname, _(result->errstring),
|
||||
strerror (result->errcode)) != -1)
|
||||
{
|
||||
/* We don't need the error string anymore. */
|
||||
if (strcmp (result->errstring, "out of memory") != 0)
|
||||
|
Loading…
Reference in New Issue
Block a user