* environ.cc: Add TMPDIR to the list of environment variables which are

converted to POSIX format.
* sigproc.cc (proc_terminate): Don't attempt to delete when a muto pointer is
NULL.
This commit is contained in:
Christopher Faylor
2000-03-25 05:25:27 +00:00
parent 85f96eabae
commit 4f7831c1f5
4 changed files with 15 additions and 3 deletions

View File

@@ -532,8 +532,11 @@ proc_terminate (void)
* non-raceable manner.
*/
muto *m = sync_proc_subproc;
sync_proc_subproc = NULL;
delete m;
if (m)
{
sync_proc_subproc = NULL;
delete m;
}
}
sip_printf ("leaving");
}