Browse Source

Cannot read config file properly.

pull/36/head
David 11 years ago
parent
commit
c60cb45430
1 changed files with 2 additions and 2 deletions
  1. 4
      src/jconf.c

4
src/jconf.c

@ -76,8 +76,8 @@ jconf_t *read_jconf(const char* file)
buf = malloc(pos + 1);
if (buf == NULL) FATAL("No enough memory.");
int err = fread(buf, pos, 1, f);
if (err) FATAL("Failed to read the config file.");
int nread = fread(buf, pos, 1, f);
if (!nread) FATAL("Failed to read the config file.");
fclose(f);
buf[pos] = '\0'; // end of string

Loading…
Cancel
Save