From 06ad0da69e71fa76f856fc9e5497c4163b0e99f2 Mon Sep 17 00:00:00 2001 From: "Michael I. Bushnell" Date: Thu, 18 Jul 1996 22:39:37 +0000 Subject: *** empty log message *** --- proc/mgt.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'proc/mgt.c') diff --git a/proc/mgt.c b/proc/mgt.c index 4b942597..e8af38d4 100644 --- a/proc/mgt.c +++ b/proc/mgt.c @@ -146,6 +146,8 @@ S_proc_child (struct proc *parentp, if (childp->p_parentset) return EBUSY; + mach_port_deallocate (mach_task_self (), childt); + /* Process identification. Leave p_task and p_pid alone; all the rest comes from the new parent. */ @@ -212,11 +214,13 @@ S_proc_reassign (struct proc *p, if (stubp == p) return EINVAL; + mach_port_deallocate (mach_task_self (), newt); + remove_proc_from_hash (p); task_terminate (p->p_task); mach_port_deallocate (mach_task_self (), p->p_task); - p->p_task = newt; + p->p_task = stubp->p_task; /* For security, we need use the request port from STUBP */ ports_transfer_right (p, stubp); -- cgit v1.2.3