* libltdl/ltdl.c (lt_dlhandle_next): Now we can loop through all

loaded module handles as originally intended.
This commit is contained in:
Gary V. Vaughan 2001-08-15 00:23:22 +00:00
parent 27f0f2ccee
commit 196a286bc6
2 changed files with 4 additions and 1 deletions

View File

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

View File

@ -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