diff options
author | Luke Bratch <luke@bratch.co.uk> | 2019-05-19 23:27:30 +0100 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2019-05-19 23:27:30 +0100 |
commit | 18775b0ae37edc1a5906df006f0e0e5f7da66afe (patch) | |
tree | 37e726fbb7bd48c9d123137123324ff7453e671d /config.c | |
parent | f4bd7d7f2233e5e16b4e809898ef7a241fbf16ae (diff) |
fclose() configuration file if option not found.
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -49,6 +49,7 @@ int getconfstr(char *confname, char *filename, char* dest) { if (!found) { printf("Error reading configuration option '%s', did not find it in configuration file '%s'.\n", confname, filename); + fclose(fp); return 0; } |