From: Tod Milam Date: Thu, 14 Dec 2000 21:27:04 +0000 (+0000) Subject: * libltdl/ltdl.c (lt_dlexit): Reset the loaders value to zero when X-Git-Tag: multi-language-merge-point~108 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bda4293307c5b159a7ed706d79a8d0c9bde8a661;p=thirdparty%2Flibtool.git * libltdl/ltdl.c (lt_dlexit): Reset the loaders value to zero when the last module has been unloaded. --- diff --git a/ChangeLog b/ChangeLog index 122d892d3..903363503 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-12-14 Tod Milam + + * libltdl/ltdl.c (lt_dlexit): Reset the loaders value to zero when + the last module has been unloaded. + 2000-12-14 Masahiro Nobori * README: Updated. @@ -5,7 +10,7 @@ * libtool.m4: New port to NEWS-OS Release 6. * ltcf-c.sh: ditto. -2000-12-14 Nick Hudson +2000-12-14 Nick Hudson * ltcf-c.sh (hardcode_libdir_flag_spec): Remove linker sspecification for netbsd. diff --git a/libltdl/ltdl.c b/libltdl/ltdl.c index 97db20059..a8f41e571 100644 --- a/libltdl/ltdl.c +++ b/libltdl/ltdl.c @@ -1120,6 +1120,7 @@ lt_dlexit () lt_dlfree (loader); loader = next; } + loaders = 0; } return errors;