tor

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

commit b13bf65062c5918e90cb72c622ef8bdc29d53c20
parent e220e6e4372dad90cac9138ec21ea91d4f6df7ca
Author: Nick Mathewson <nickm@torproject.org>
Date:   Thu,  3 Aug 2017 09:10:58 -0400

Merge branch 'bug23081_025' into maint-0.3.1

Diffstat:
Achanges/bug23081 | 8++++++++
Msrc/or/ntmain.c | 1+
2 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/changes/bug23081 b/changes/bug23081 @@ -0,0 +1,8 @@ + o Minor bugfixes (Windows service): + - When running as a Windows service, set the ID of the main thread + correctly. Failure to do so made us fail to send log messages + to the controller in 0.2.1.16-rc, slowed down controller + event delivery in 0.2.7.3-rc and later, and crash with an assertion + failure in 0.3.1.1-alpha. Fixes bug 23081; bugfix on 0.2.1.6-alpha. + Patch and diagnosis from "Vort". + diff --git a/src/or/ntmain.c b/src/or/ntmain.c @@ -293,6 +293,7 @@ nt_service_body(int argc, char **argv) * event loop */ service_status.dwCurrentState = SERVICE_RUNNING; service_fns.SetServiceStatus_fn(hStatus, &service_status); + set_main_thread(); do_main_loop(); tor_cleanup(); }