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>.
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)