Auto merge of #406 - DongwenHuang:patch-1, r=badboy

Update read.c

static char *seekNewline(char *s, size_t len)  :
this function can not parse the string,such as "hello world\r". the case that  the last char is '\r'.
This commit is contained in:
not-a-robot 2016-04-20 17:24:30 +02:00
commit d3c7df33a1

2
read.c
View File

@ -127,7 +127,7 @@ static char *seekNewline(char *s, size_t len) {
* might not have a trailing NULL character. */
while (pos < _len) {
while(pos < _len && s[pos] != '\r') pos++;
if (s[pos] != '\r') {
if (pos==_len) {
/* Not found. */
return NULL;
} else {