diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/confparser.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/confparser.c b/src/confparser.c index 64bfe34..2a11467 100644 --- a/src/confparser.c +++ b/src/confparser.c @@ -135,12 +135,12 @@ int config_file_parse(Conf *conf, UserOpt *opt) { } void free_conf(Conf *conf) { - if (conf->vc_dir) { - free(conf->vc_dir); - } - if (conf->scrt_dir) { - free(conf->scrt_dir); +#define X(var,str,name) \ + if (conf->var) { \ + free(conf->var); \ } + CONFIG_VARIABLES_TABLE +#undef X } int init_create_config_file(UserOpt *opt) { |