summaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-02-15 15:30:37 +0100
committerBert <ber.t@gmx.com>2011-02-15 15:30:37 +0100
commite8ed491ba9f2fe6df8f071e7c59e0174bb307a1b (patch)
treee9f9bece1767f44df2bb83e756b45839f50230e4 /util.c
parentcfed65d36fbacf6bec47869c86ea94f1cc49bcb5 (diff)
downloadnsxiv-e8ed491ba9f2fe6df8f071e7c59e0174bb307a1b.tar.zst
Fixed empty lines in readline()
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);