diff options
author | Christopher Faylor <me@cgf.cx> | 2005-03-15 21:58:44 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-03-15 21:58:44 +0000 |
commit | 9d387e73b885388a3a1026cd97cfab9d0d1434d5 (patch) | |
tree | c2932c7192d7183c9566b8d69e91406ab6c514a7 /winsup/cygwin/cygtls.cc | |
parent | e9670986601d50db0b53720cfa8a05725de341e8 (diff) | |
download | cygnal-9d387e73b885388a3a1026cd97cfab9d0d1434d5.tar.gz cygnal-9d387e73b885388a3a1026cd97cfab9d0d1434d5.tar.bz2 cygnal-9d387e73b885388a3a1026cd97cfab9d0d1434d5.zip |
* cygtls.cc (_cygtls::remove): Free process_ident, if it exists.
* errno.cc (errmap): ERROR_DISK_CORRUPT -> EIO.
Diffstat (limited to 'winsup/cygwin/cygtls.cc')
-rw-r--r-- | winsup/cygwin/cygtls.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/winsup/cygwin/cygtls.cc b/winsup/cygwin/cygtls.cc index 47d03b669..817c8e3b1 100644 --- a/winsup/cygwin/cygtls.cc +++ b/winsup/cygwin/cygtls.cc @@ -12,6 +12,7 @@ details. */ #include "assert.h" #include <syslog.h> #include <signal.h> +#include <malloc.h> #include "exceptions.h" #include "sync.h" #include "cygerrno.h" @@ -158,6 +159,8 @@ _cygtls::remove (DWORD wait) // select to control this themselves if (locals.exitsock != INVALID_SOCKET) closesocket (locals.exitsock); + if (locals.process_ident != NULL) + free (locals.process_ident); do { sentry here (wait); |