mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 05:33:47 +01:00
Merge remote-tracking branch 'public/bug9650'
This commit is contained in:
commit
bc0882c868
4
changes/bug9650
Normal file
4
changes/bug9650
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
o Minor bugfixes:
|
||||||
|
- Avoid potential crashes or bad behavior when launching a
|
||||||
|
server-side managed proxy with ORPort or ExtORPort temporarily
|
||||||
|
disabled. Fixes bug 9650; bugfix on 0.2.3.16-alpha.
|
@ -1243,8 +1243,10 @@ create_managed_proxy_environment(const managed_proxy_t *mp)
|
|||||||
{
|
{
|
||||||
char *orport_tmp =
|
char *orport_tmp =
|
||||||
get_first_listener_addrport_string(CONN_TYPE_OR_LISTENER);
|
get_first_listener_addrport_string(CONN_TYPE_OR_LISTENER);
|
||||||
smartlist_add_asprintf(envs, "TOR_PT_ORPORT=%s", orport_tmp);
|
if (orport_tmp) {
|
||||||
tor_free(orport_tmp);
|
smartlist_add_asprintf(envs, "TOR_PT_ORPORT=%s", orport_tmp);
|
||||||
|
tor_free(orport_tmp);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
@ -1275,8 +1277,10 @@ create_managed_proxy_environment(const managed_proxy_t *mp)
|
|||||||
get_first_listener_addrport_string(CONN_TYPE_EXT_OR_LISTENER);
|
get_first_listener_addrport_string(CONN_TYPE_EXT_OR_LISTENER);
|
||||||
char *cookie_file_loc = get_ext_or_auth_cookie_file_name();
|
char *cookie_file_loc = get_ext_or_auth_cookie_file_name();
|
||||||
|
|
||||||
smartlist_add_asprintf(envs, "TOR_PT_EXTENDED_SERVER_PORT=%s",
|
if (ext_or_addrport_tmp) {
|
||||||
ext_or_addrport_tmp);
|
smartlist_add_asprintf(envs, "TOR_PT_EXTENDED_SERVER_PORT=%s",
|
||||||
|
ext_or_addrport_tmp);
|
||||||
|
}
|
||||||
smartlist_add_asprintf(envs, "TOR_PT_AUTH_COOKIE_FILE=%s",
|
smartlist_add_asprintf(envs, "TOR_PT_AUTH_COOKIE_FILE=%s",
|
||||||
cookie_file_loc);
|
cookie_file_loc);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user