mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
Merge branch 'ticket28881_035' into maint-0.3.5
This commit is contained in:
commit
702fd6f0f2
4
changes/ticket28881
Normal file
4
changes/ticket28881
Normal file
@ -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.
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user