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:
Diffstat (limited to 'libgloss/read.c')
-rw-r--r--libgloss/read.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgloss/read.c b/libgloss/read.c
index 419a8ed64..eb86ea349 100644
--- a/libgloss/read.c
+++ b/libgloss/read.c
@@ -31,7 +31,7 @@ _DEFUN (read, (fd, buf, nbytes),
for (i = 0; i < nbytes; i++) {
*(buf + i) = inbyte();
if ((*(buf + i) == '\n') || (*(buf + i) == '\r')) {
- i++;
+ (*(buf + i + 1)) = 0;
break;
}
}