summaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'util.c')
-rw-r--r--util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/util.c b/util.c
index 82ab057..5c5737b 100644
--- a/util.c
+++ b/util.c
@@ -102,11 +102,11 @@ char* readline(FILE *stream) {
}
} while (!end && !feof(stream) && !ferror(stream));
- if (!ferror(stream) && *buf) {
+ if (ferror(stream)) {
+ s = NULL;
+ } else {
s = (char*) s_malloc((strlen(buf) + 1) * sizeof(char));
strcpy(s, buf);
- } else {
- s = NULL;
}
free(buf);