Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-07-14 20:16:33 +0400
committerChristopher Faylor <me@cgf.cx>2002-07-14 20:16:33 +0400
commitf5c3d180804531dabb521513b8d9da9a6b313f06 (patch)
treef7e4c800e74eb598982c1be2195a9da3cf6abf58 /winsup/cygwin/debug.cc
parente8a6396f8843d9f3ef1a5d70953e995d8af0aa5f (diff)
* debug.cc (clexec): Add missing `hl = hl->next'.
Diffstat (limited to 'winsup/cygwin/debug.cc')
-rw-r--r--winsup/cygwin/debug.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/winsup/cygwin/debug.cc b/winsup/cygwin/debug.cc
index fa0177384..369b3908f 100644
--- a/winsup/cygwin/debug.cc
+++ b/winsup/cygwin/debug.cc
@@ -229,6 +229,7 @@ setclexec (HANDLE oh, HANDLE nh, bool setit)
handle_list *hl = find_handle (oh);
if (hl)
{
+ hl = hl->next;
hl->clexec = setit;
hl->h = nh;
}