Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2014-11-14 13:57:45 +0300
committerCorinna Vinschen <corinna@vinschen.de>2014-11-14 13:57:45 +0300
commit1243cefd789dddc2e071079ef5252e46cb3f7c1d (patch)
treef904bfce92451f2ccf01f8ff139ec1681b0ea0dc /winsup/cygwin/fhandler_termios.cc
parent73742508fcd8e994450582c1b7296c709da66764 (diff)
* fhandler_termios.cc (fhandler_termios::line_edit): Fix fatal typo in
bytes_read pointer checks.
Diffstat (limited to 'winsup/cygwin/fhandler_termios.cc')
-rw-r--r--winsup/cygwin/fhandler_termios.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler_termios.cc b/winsup/cygwin/fhandler_termios.cc
index 50c95801d..1786e49c9 100644
--- a/winsup/cygwin/fhandler_termios.cc
+++ b/winsup/cygwin/fhandler_termios.cc
@@ -243,7 +243,7 @@ fhandler_termios::line_edit (const char *rptr, size_t nread, termios& ti,
bool sawsig = false;
int iscanon = ti.c_lflag & ICANON;
- if (*bytes_read)
+ if (bytes_read)
*bytes_read = nread;
while (nread-- > 0)
{
@@ -402,7 +402,7 @@ fhandler_termios::line_edit (const char *rptr, size_t nread, termios& ti,
}
/* Adding one compensates for the postdecrement in the above loop. */
- if (*bytes_read)
+ if (bytes_read)
*bytes_read -= (nread + 1);
if (sawsig)