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=.
This commit is contained in:
Ken Brown 2020-12-07 16:19:57 -05:00
parent 9e573ba50f
commit b6624e23e1
1 changed files with 1 additions and 4 deletions

View File

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