* fhandler.h (fhandler_pty_master::~fhandler_pty_master): Delete.

* fhandler_tty.cc (fhandler_pty_master::~fhandler_pty_master): Ditto.
This commit is contained in:
Christopher Faylor
2013-12-17 19:05:26 +00:00
parent f51db32d8c
commit 891b1e7e22
4 changed files with 8 additions and 10 deletions

View File

@@ -1326,15 +1326,6 @@ fhandler_pty_master::close ()
return 0;
}
/* This is just to catch error conditions. Since the constructor
actually opens some handles, and stat() does not open an fd, they need
to be closed when the fhandler goes away. */
fhandler_pty_master::~fhandler_pty_master ()
{
if (from_master && to_master)
close_with_arch ();
}
ssize_t __stdcall
fhandler_pty_master::write (const void *ptr, size_t len)
{