* debug.cc (clexec): Add missing `hl = hl->next'.
This commit is contained in:
parent
e8a6396f88
commit
f5c3d18080
|
@ -1,3 +1,7 @@
|
|||
2002-07-14 Conrad Scott <conrad.scott@dsl.pipex.com>
|
||||
|
||||
* debug.cc (clexec): Add missing `hl = hl->next'.
|
||||
|
||||
2002-07-14 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* Makefile.in (cygrun.exe): Add a -lcygwin on the end.
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue