diff options
author | Christopher Faylor <me@cgf.cx> | 2006-08-27 16:46:27 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2006-08-27 16:46:27 +0000 |
commit | 1cc0c5d6f9bf27b40f75d26887a6698049bf884d (patch) | |
tree | f04c7b903d902402d56ade54e9b89273abfc4b55 | |
parent | d9baa656ed7a459d4c037ac3592b67d58a1debdc (diff) | |
download | cygnal-1cc0c5d6f9bf27b40f75d26887a6698049bf884d.tar.gz cygnal-1cc0c5d6f9bf27b40f75d26887a6698049bf884d.tar.bz2 cygnal-1cc0c5d6f9bf27b40f75d26887a6698049bf884d.zip |
* child_info.h (child_info_spawn::~child_info_spawn): Don't close myself_pinfo
handle when spawning.
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/child_info.h | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 11dc7f734..4abad85a2 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2006-08-27 Christopher Faylor <cgf@timesys.com> + + * child_info.h (child_info_spawn::~child_info_spawn): Don't close + myself_pinfo handle when spawning. + 2006-08-20 Corinna Vinschen <corinna@vinschen.de> * fhandler_disk_file.cc (fhandler_disk_file::opendir): Fix formatting. diff --git a/winsup/cygwin/child_info.h b/winsup/cygwin/child_info.h index 9f11015dd..d2b712e88 100644 --- a/winsup/cygwin/child_info.h +++ b/winsup/cygwin/child_info.h @@ -38,7 +38,7 @@ enum child_status #define EXEC_MAGIC_SIZE sizeof(child_info) /* Change this value if you get a message indicating that it is out-of-sync. */ -#define CURR_CHILD_INFO_MAGIC 0x704d1f7eU +#define CURR_CHILD_INFO_MAGIC 0x3a24db6aU /* NOTE: Do not make gratuitous changes to the names or organization of the below class. The layout is checksummed to determine compatibility between @@ -122,7 +122,8 @@ public: cfree (*e); cfree (moreinfo->envp); } - CloseHandle (moreinfo->myself_pinfo); + if (type != _PROC_SPAWN) + CloseHandle (moreinfo->myself_pinfo); cfree (moreinfo); } } |