diff options
author | teor <teor@torproject.org> | 2019-11-06 11:19:38 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2019-11-06 11:19:38 +1000 |
commit | 03e77ef036e41486b8bfe138d11790c928f49f35 (patch) | |
tree | 637844fa0ea98b61df95dc2985f2cbfe62580a04 /src/lib | |
parent | 54e2d0dc2d790a9e84ec44db2d53d535d8076602 (diff) | |
parent | 1bde356bf645f3c3d3b0a6e70c03e2baf9f89d26 (diff) | |
download | tor-03e77ef036e41486b8bfe138d11790c928f49f35.tar.gz tor-03e77ef036e41486b8bfe138d11790c928f49f35.zip |
Merge branch 'maint-0.3.5' into maint-0.4.0
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/fs/conffile.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/lib/fs/conffile.c b/src/lib/fs/conffile.c index 7bb2f23931..0d5d56b335 100644 --- a/src/lib/fs/conffile.c +++ b/src/lib/fs/conffile.c @@ -153,16 +153,18 @@ config_process_include(const char *path, int recursion_level, int extended, int rv = -1; SMARTLIST_FOREACH_BEGIN(config_files, const char *, config_file) { config_line_t *included_config = NULL; + config_line_t *included_config_last = NULL; if (config_get_included_config(config_file, recursion_level, extended, - &included_config, list_last, + &included_config, &included_config_last, opened_lst) < 0) { goto done; } *next = included_config; - if (*list_last) - next = &(*list_last)->next; - + if (included_config_last) { + next = &included_config_last->next; + *list_last = included_config_last; + } } SMARTLIST_FOREACH_END(config_file); *list = ret_list; rv = 0; |