summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/fhandler_tty.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2012-07-04 06:01:16 +0000
committerChristopher Faylor <me@cgf.cx>2012-07-04 06:01:16 +0000
commit0bdf68577d0d569f4c22e0e31bbe7fbc8c4172ab (patch)
treef4a8e938240d501aab7e5dc0923c8963aece8b42 /winsup/cygwin/fhandler_tty.cc
parentaa01a03c10af262890055b02f8623dba286fa366 (diff)
downloadcygnal-0bdf68577d0d569f4c22e0e31bbe7fbc8c4172ab.tar.gz
cygnal-0bdf68577d0d569f4c22e0e31bbe7fbc8c4172ab.tar.bz2
cygnal-0bdf68577d0d569f4c22e0e31bbe7fbc8c4172ab.zip
* fhandler_tty.cc (fhandler_pty_slave::read): Remove duplicate assignment to
bytes_in_pipe found by Clang.
Diffstat (limited to 'winsup/cygwin/fhandler_tty.cc')
-rw-r--r--winsup/cygwin/fhandler_tty.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc
index fe7e283a9..2331a0449 100644
--- a/winsup/cygwin/fhandler_tty.cc
+++ b/winsup/cygwin/fhandler_tty.cc
@@ -835,7 +835,6 @@ fhandler_pty_slave::read (void *ptr, size_t& len)
if (!ReadFile (get_handle (), buf, readlen, &n, NULL))
{
termios_printf ("read failed, %E");
- bytes_in_pipe = 0;
raise (SIGHUP);
bytes_in_pipe = 0;
ptr = NULL;