Merge remote-tracking branch 'public/bug9650'

This commit is contained in:
Nick Mathewson 2014-04-05 14:53:48 -04:00
commit bc0882c868
2 changed files with 12 additions and 4 deletions

4
changes/bug9650 Normal file
View 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.

View File

@ -1243,9 +1243,11 @@ create_managed_proxy_environment(const managed_proxy_t *mp)
{
char *orport_tmp =
get_first_listener_addrport_string(CONN_TYPE_OR_LISTENER);
if (orport_tmp) {
smartlist_add_asprintf(envs, "TOR_PT_ORPORT=%s", orport_tmp);
tor_free(orport_tmp);
}
}
{
char *bindaddr_tmp = get_bindaddr_for_server_proxy(mp);
@ -1275,8 +1277,10 @@ create_managed_proxy_environment(const managed_proxy_t *mp)
get_first_listener_addrport_string(CONN_TYPE_EXT_OR_LISTENER);
char *cookie_file_loc = get_ext_or_auth_cookie_file_name();
if (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",
cookie_file_loc);