mirror of
https://git.busybox.net/busybox.git
synced 2024-12-19 02:13:22 +08:00
Revert that change. As Matt Kraai rightly points out,
this is not a bug. What I was I thinking when I committed this. Doh!
This commit is contained in:
parent
74400ccfd0
commit
a0f0ae5a7a
@ -55,7 +55,7 @@ char *fgets_str(FILE *file, const char *terminating_string)
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (idx == 0 || linebuf[0] == '\n') {
|
||||
if (idx == 0) {
|
||||
return NULL;
|
||||
}
|
||||
linebuf[idx] = '\0';
|
||||
|
Loading…
Reference in New Issue
Block a user