X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/f7f26f88755ac6a3b9af4918b51b0d6e7a692c78..6feb1b669b381452c1c2b4723bfd18275ecae350:/configfile.c diff --git a/configfile.c b/configfile.c index 833f158..e039109 100644 --- a/configfile.c +++ b/configfile.c @@ -6,8 +6,7 @@ * (see COPYING for full license text) */ -#include -#include +#include #include "configfile.h" static int next_char(FILE *f) @@ -40,7 +39,9 @@ static int read_config_line(FILE *f, struct strbuf *name, struct strbuf *value) /* Skip comments and preceding spaces. */ for(;;) { - if (c == '#' || c == ';') + if (c == EOF) + return 0; + else if (c == '#' || c == ';') skip_line(f); else if (!isspace(c)) break;