* dtable.cc (dtable::get_debugger_info): Add missing braces.
(dtable::stdio_init): Fix incorrect negation of not_open(2) condition.
This commit is contained in:
parent
927761a425
commit
8f19b4b64f
@ -1,3 +1,8 @@
|
|||||||
|
2011-08-18 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* dtable.cc (dtable::get_debugger_info): Add missing braces.
|
||||||
|
(dtable::stdio_init): Fix incorrect negation of not_open(2) condition.
|
||||||
|
|
||||||
2011-08-16 Pierre Humblet <Pierre.Humblet@ieee.org>
|
2011-08-16 Pierre Humblet <Pierre.Humblet@ieee.org>
|
||||||
|
|
||||||
* net.cc (gethostby_helper): Remove DEBUGGING code from and
|
* net.cc (gethostby_helper): Remove DEBUGGING code from and
|
||||||
|
@ -130,6 +130,7 @@ dtable::get_debugger_info ()
|
|||||||
| O_BINARY, 0777))
|
| O_BINARY, 0777))
|
||||||
release (i);
|
release (i);
|
||||||
else
|
else
|
||||||
|
{
|
||||||
CloseHandle (h);
|
CloseHandle (h);
|
||||||
/* Copy to Windows' idea of a standard handle, otherwise
|
/* Copy to Windows' idea of a standard handle, otherwise
|
||||||
we have invalid standard handles when calling Windows
|
we have invalid standard handles when calling Windows
|
||||||
@ -139,6 +140,7 @@ dtable::get_debugger_info ()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* Initialize the file descriptor/handle mapping table.
|
/* Initialize the file descriptor/handle mapping table.
|
||||||
This function should only be called when a cygwin function is invoked
|
This function should only be called when a cygwin function is invoked
|
||||||
@ -172,7 +174,7 @@ dtable::stdio_init ()
|
|||||||
initialized in dtable::get_debugger_info (). In this case
|
initialized in dtable::get_debugger_info (). In this case
|
||||||
init_std_file_from_handle is a no-op, so, even if out == err we don't
|
init_std_file_from_handle is a no-op, so, even if out == err we don't
|
||||||
want to duplicate the handle since it will be unused. */
|
want to duplicate the handle since it will be unused. */
|
||||||
if (out == err && (!being_debugged () || !not_open (2)))
|
if (out == err && (!being_debugged () || not_open (2)))
|
||||||
{
|
{
|
||||||
/* Since this code is not invoked for forked tasks, we don't have
|
/* Since this code is not invoked for forked tasks, we don't have
|
||||||
to worry about the close-on-exec flag here. */
|
to worry about the close-on-exec flag here. */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user