config_file.c - fix Coverity warning - resource leak of

path
This commit is contained in:
twinaphex 2018-01-01 16:37:20 +01:00
parent 04e6554ad6
commit 515918f80c

View File

@ -289,6 +289,7 @@ static bool parse_line(config_file_t *conf,
fprintf(stderr, "!!! #include depth exceeded for config. Might be a cycle.\n");
else
add_sub_conf(conf, path);
free(path);
}
goto error;
}