mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-01-30 14:30:15 +08:00
* libltdl/ltdl.c (lt_dlexit): Was checking for residency of the
wrong module. Reported by Robert Boehne <rboehne@ricardo-us.com>
This commit is contained in:
parent
325c26d1a4
commit
22218cc780
@ -1,5 +1,9 @@
|
||||
2000-12-20 Gary V. Vaughan <gvv@techie.com>
|
||||
|
||||
* libltdl/ltdl.c (lt_dlexit): Was checking for residency of the
|
||||
wrong module.
|
||||
Reported by Robert Boehne <rboehne@ricardo-us.com>
|
||||
|
||||
* ltmain.in (dlprefiles): Now that `2000-12-15 Utz-Uwe Haus' patch
|
||||
below can detect preopened library deplibs correctly in libltdl,
|
||||
we need to ensure that libtool library deplibs are also preloaded
|
||||
|
@ -1115,7 +1115,7 @@ lt_dlexit ()
|
||||
{
|
||||
lt_dlhandle tmp = cur;
|
||||
cur = cur->next;
|
||||
if (!LT_DLIS_RESIDENT (cur) && tmp->info.ref_count <= level)
|
||||
if (!LT_DLIS_RESIDENT (tmp) && tmp->info.ref_count <= level)
|
||||
{
|
||||
if (lt_dlclose (tmp))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user