* 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

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