diff --git a/config.c b/config.c index 08156d16..5ed2308b 100644 --- a/config.c +++ b/config.c @@ -147,8 +147,6 @@ parse_section_main(const char *key, const char *value, struct config *conf, } else if (strcmp(key, "font") == 0) { - //free(conf->font); - //conf->font = strdup(value); char *copy = strdup(value); for (const char *font = strtok(copy, ","); font != NULL; font = strtok(NULL, ",")) tll_push_back(conf->fonts, strdup(font));