mirror of
git://git.savannah.gnu.org/libtool.git
synced 2024-11-27 06:09:57 +08:00
* libltdl/ltdl.c (lt_dlhandle_next): Now we can loop through all
loaded module handles as originally intended.
This commit is contained in:
parent
27f0f2ccee
commit
196a286bc6
@ -1,5 +1,8 @@
|
||||
2001-08-15 Gary V. Vaughan <gary@gnu.org>
|
||||
|
||||
* libltdl/ltdl.c (lt_dlhandle_next): Now we can loop through all
|
||||
loaded module handles as originally intended.
|
||||
|
||||
* libltdl/ltdl.c (lt_dlseterror): Oops. This never worked
|
||||
either, due to a pair of typos. Now fixed.
|
||||
|
||||
|
@ -3504,7 +3504,7 @@ lt_dlhandle
|
||||
lt_dlhandle_next (place)
|
||||
lt_dlhandle place;
|
||||
{
|
||||
return place ? place->next : (lt_dlhandle) 0;
|
||||
return place ? place->next : handles;
|
||||
}
|
||||
|
||||
int
|
||||
|
Loading…
Reference in New Issue
Block a user