glibc/elf/dlerror.c
Ulrich Drepper edf0624bb2 (last_object_name): Removed.
(dlerror): Don't use last_object_name.
(_dl_error_run): Omit second argument to _dl_catch_error.
1998-03-12 14:29:42 +00:00

72 lines
1.9 KiB
C

/* dlerror -- Return error detail for failing <dlfcn.h> functions.
Copyright (C) 1995, 1996, 1998 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with the GNU C Library; see the file COPYING.LIB. If not,
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
#include <link.h>
#include <dlfcn.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
static int last_errcode;
static char *last_errstring;
char *
dlerror (void)
{
static char *buf;
if (buf)
{
free (buf);
buf = NULL;
}
if (! last_errstring)
return NULL;
if (last_errcode == 0)
buf = last_errstring;
else
{
if (asprintf (&buf, "%s: %s",
last_errstring, strerror (last_errcode)) == -1)
buf = NULL;
/* We don't need the error string anymore. */
free (last_errstring);
}
/* Reset the error indicator. */
last_errstring = NULL;
return buf;
}
int
_dlerror_run (void (*operate) (void))
{
if (last_errstring != NULL)
/* Free the error string from the last failed command. This can
happen if `dlerror' was not run after an error was found. */
free (last_errstring);
last_errcode = _dl_catch_error (&last_errstring, operate);
return last_errstring != NULL;
}