Fix a bug in dlclose that broke the apache13 port. The list of

loaded objects wasn't being maintained properly.
This commit is contained in:
John Polstra 1998-10-13 03:31:59 +00:00
parent 854de3d138
commit 1280c211e2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=40280

View File

@ -22,7 +22,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: rtld.c,v 1.10 1998/09/16 02:54:08 jdp Exp $
* $Id: rtld.c,v 1.11 1998/09/22 02:09:56 jdp Exp $
*/
/*
@ -1155,6 +1155,7 @@ dlclose(void *handle)
} else
linkp = &obj->next;
}
obj_tail = linkp;
}
GDB_STATE(RT_CONSISTENT);