From 0bdf68577d0d569f4c22e0e31bbe7fbc8c4172ab Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Wed, 4 Jul 2012 06:01:16 +0000 Subject: [PATCH] * fhandler_tty.cc (fhandler_pty_slave::read): Remove duplicate assignment to bytes_in_pipe found by Clang. --- winsup/cygwin/ChangeLog | 5 +++++ winsup/cygwin/fhandler_tty.cc | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 9504c286e..896cee9c8 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2012-07-04 Christopher Faylor + + * fhandler_tty.cc (fhandler_pty_slave::read): Remove duplicate + assignment to bytes_in_pipe found by Clang. + 2012-07-02 Christopher Faylor * exceptions.cc (exception::handle): Use error_code in klog, as 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;