From 196a286bc62799f9ea1dd1c109c9a75527b71cf0 Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Wed, 15 Aug 2001 00:23:22 +0000 Subject: [PATCH] * libltdl/ltdl.c (lt_dlhandle_next): Now we can loop through all loaded module handles as originally intended. --- ChangeLog | 3 +++ libltdl/ltdl.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 27d30b80..c7221f9d 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 577ee2ac..ac6f23c5 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