* debug.cc (clexec): Add missing `hl = hl->next'.

This commit is contained in:
Christopher Faylor 2002-07-14 16:16:33 +00:00
parent e8a6396f88
commit f5c3d18080
2 changed files with 5 additions and 0 deletions

View File

@ -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.

View File

@ -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;
}