commit 702fd6f0f21138c0864cdf0ce73c0319aceeccb7 parent bf71dce01a9977786a6ba1e99fe8827c08df57e5 Author: Nick Mathewson <nickm@torproject.org> Date: Tue, 18 Dec 2018 13:52:36 -0500 Merge branch 'ticket28881_035' into maint-0.3.5 Diffstat:
| A | changes/ticket28881 | | | 4 | ++++ |
| M | src/app/config/config.c | | | 2 | ++ |
2 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/changes/ticket28881 b/changes/ticket28881 @@ -0,0 +1,4 @@ + o Code simplification and refactoring: + - When parsing a port configuration, make it more + obvious to static analyzer tools that we will always initialize the + address. Closes ticket 28881. diff --git a/src/app/config/config.c b/src/app/config/config.c @@ -6913,6 +6913,8 @@ parse_port_config(smartlist_t *out, for (; ports; ports = ports->next) { tor_addr_t addr; + tor_addr_make_unspec(&addr); + int port; int sessiongroup = SESSION_GROUP_UNSET; unsigned isolation = ISO_DEFAULT;