tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 7e406ec40f5fef21c07bea9db51615e11a749ee8
parent 0e4fcd39966ac6f5273920a6a19a8527d891d78e
Author: Nick Mathewson <nickm@torproject.org>
Date:   Fri, 14 Sep 2018 10:48:01 -0400

Merge branch 'maint-0.3.4'

Diffstat:
Achanges/bug27708 | 4++++
Msrc/app/config/config.c | 1+
2 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/changes/bug27708 b/changes/bug27708 @@ -0,0 +1,4 @@ + o Major bugfixes (restart-in-process): + - Fix a use-after-free error that could be caused by passing Tor an + impossible set of options that would fail during options_act(). + Fixes bug 27708; bugfix on 0.3.3.1-alpha. diff --git a/src/app/config/config.c b/src/app/config/config.c @@ -911,6 +911,7 @@ set_options(or_options_t *new_val, char **msg) "Acting on config options left us in a broken state. Dying."); tor_shutdown_event_loop_and_exit(1); } + global_options = old_options; return -1; } /* Issues a CONF_CHANGED event to notify controller of the change. If Tor is