summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Brown <kbrown@cornell.edu>2020-12-07 16:19:57 -0500
committerKen Brown <kbrown@cornell.edu>2020-12-07 16:19:57 -0500
commitb6624e23e17bdc505f639d9f181225dbf3a50fc6 (patch)
treedf0bcc6c72302b084138dc7da6af334dfdec91a7
parent9e573ba50f129bff7b6e1be10cf4bbcb70f1efdd (diff)
downloadcygnal-b6624e23e17bdc505f639d9f181225dbf3a50fc6.tar.gz
cygnal-b6624e23e17bdc505f639d9f181225dbf3a50fc6.tar.bz2
cygnal-b6624e23e17bdc505f639d9f181225dbf3a50fc6.zip
Cygwin: dtable::dup_worker: update comment and debug output
The comment and debug output became obsolete in commit 23771fa1f7 when dup_worker started calling fhandler_base::clone instead of build_fh_pc and fhandler_base::operator=.
-rw-r--r--winsup/cygwin/dtable.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/winsup/cygwin/dtable.cc b/winsup/cygwin/dtable.cc
index 6a91e33bc..9f4210797 100644
--- a/winsup/cygwin/dtable.cc
+++ b/winsup/cygwin/dtable.cc
@@ -679,12 +679,9 @@ out:
fhandler_base *
dtable::dup_worker (fhandler_base *oldfh, int flags)
{
- /* Don't call set_name in build_fh_pc. It will be called in
- fhandler_base::operator= below. Calling it twice will result
- in double allocation. */
fhandler_base *newfh = oldfh->clone ();
if (!newfh)
- debug_printf ("build_fh_pc failed");
+ debug_printf ("clone failed");
else
{
if (!oldfh->archetype)