Extend the error message displayed when a plugin fails to load.
* plugin.c (try_load_plugin): Extend error message when a plugin fails to open.
This commit is contained in:
parent
a05e3e2039
commit
9e7cb4c359
@ -1,3 +1,8 @@
|
||||
2020-05-26 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* plugin.c (try_load_plugin): Extend error message when a plugin
|
||||
fails to open.
|
||||
|
||||
2020-05-23 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* bfdio.c (bfd_get_file_size): Don't segfault on NULL arch_header.
|
||||
|
@ -273,7 +273,8 @@ try_load_plugin (const char *pname,
|
||||
plugin_handle = dlopen (pname, RTLD_NOW);
|
||||
if (!plugin_handle)
|
||||
{
|
||||
_bfd_error_handler ("%s\n", dlerror ());
|
||||
_bfd_error_handler ("Failed to load plugin '%s', reason: %s\n",
|
||||
pname, dlerror ());
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user