diff options
author | Christopher Faylor <me@cgf.cx> | 2002-07-14 16:16:33 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-07-14 16:16:33 +0000 |
commit | f5c3d180804531dabb521513b8d9da9a6b313f06 (patch) | |
tree | f7e4c800e74eb598982c1be2195a9da3cf6abf58 /winsup/cygwin/debug.cc | |
parent | e8a6396f8843d9f3ef1a5d70953e995d8af0aa5f (diff) | |
download | cygnal-f5c3d180804531dabb521513b8d9da9a6b313f06.tar.gz cygnal-f5c3d180804531dabb521513b8d9da9a6b313f06.tar.bz2 cygnal-f5c3d180804531dabb521513b8d9da9a6b313f06.zip |
* debug.cc (clexec): Add missing `hl = hl->next'.
Diffstat (limited to 'winsup/cygwin/debug.cc')
-rw-r--r-- | winsup/cygwin/debug.cc | 1 |
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; } |