aboutsummaryrefslogtreecommitdiff
path: root/changes/bug16360-failed-crypto-early-init
diff options
context:
space:
mode:
authorteor <teor2345@gmail.com>2015-06-13 21:28:02 +1000
committerNick Mathewson <nickm@torproject.org>2015-06-17 09:18:32 -0400
commit75388f67c07d1a48c6fb9c5d1c4441ab66b644c0 (patch)
treebb925c15d51eb34bbe1f918850bba2eee95d45ab /changes/bug16360-failed-crypto-early-init
parent8aa04408fb724d55e95419ec9f0568c7d733acb5 (diff)
downloadtor-75388f67c07d1a48c6fb9c5d1c4441ab66b644c0.tar.gz
tor-75388f67c07d1a48c6fb9c5d1c4441ab66b644c0.zip
Correctly handle failed crypto_early_init
If crypto_early_init fails, a typo in a return value from tor_init means that tor_main continues running, rather than returning an error value. Fixes bug 16360; bugfix on d3fb846d8c98 in 0.2.5.2-alpha, introduced when implementing #4900. Patch by "teor".
Diffstat (limited to 'changes/bug16360-failed-crypto-early-init')
-rw-r--r--changes/bug16360-failed-crypto-early-init7
1 files changed, 7 insertions, 0 deletions
diff --git a/changes/bug16360-failed-crypto-early-init b/changes/bug16360-failed-crypto-early-init
new file mode 100644
index 0000000000..21972bce52
--- /dev/null
+++ b/changes/bug16360-failed-crypto-early-init
@@ -0,0 +1,7 @@
+ o Minor bugfixes (crypto error-handling):
+ - If crypto_early_init fails, a typo in a return value from tor_init
+ means that tor_main continues running, rather than returning
+ an error value.
+ Fixes bug 16360; bugfix on d3fb846d8c98 in 0.2.5.2-alpha,
+ introduced when implementing #4900.
+ Patch by "teor".