From: Gary V. Vaughan Date: Wed, 15 Aug 2001 00:23:22 +0000 (+0000) Subject: * libltdl/ltdl.c (lt_dlhandle_next): Now we can loop through all X-Git-Tag: release-1-4d~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=196a286bc62799f9ea1dd1c109c9a75527b71cf0;p=thirdparty%2Flibtool.git * libltdl/ltdl.c (lt_dlhandle_next): Now we can loop through all loaded module handles as originally intended. --- diff --git a/ChangeLog b/ChangeLog index 27d30b802..c7221f9d5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2001-08-15 Gary V. Vaughan + * 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. diff --git a/libltdl/ltdl.c b/libltdl/ltdl.c index 577ee2ac1..ac6f23c5d 100644 --- a/libltdl/ltdl.c +++ b/libltdl/ltdl.c @@ -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