]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libltdl/ltdl.c (lt_dlhandle_next): Now we can loop through all
authorGary V. Vaughan <gary@gnu.org>
Wed, 15 Aug 2001 00:23:22 +0000 (00:23 +0000)
committerGary V. Vaughan <gary@gnu.org>
Wed, 15 Aug 2001 00:23:22 +0000 (00:23 +0000)
loaded module handles as originally intended.

ChangeLog
libltdl/ltdl.c

index 27d30b8022bff04ca2b343ca3001254e46d5a608..c7221f9d5a68f6201edd037e6e2c5dc9aa0288fd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
 
index 577ee2ac142c96ffc3fac0242c6eaa6c5af9ffb9..ac6f23c5d33e319e565fc7c553b879654ef639fc 100644 (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