tor

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

commit 543fd89fb7fe4817b5e59beb132f5331ee7a2f48
parent ab415ae95081ab662225a4600b93f66e7b4baf7a
Author: Nick Mathewson <nickm@torproject.org>
Date:   Mon, 13 Nov 2017 12:57:58 -0500

Merge branch 'maint-0.2.8' into maint-0.2.9

Diffstat:
Achanges/bug23291 | 3+++
Msrc/test/test-memwipe.c | 2+-
2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/changes/bug23291 b/changes/bug23291 @@ -0,0 +1,3 @@ + o Minor bugfixes (testing): + - Fix an undersized buffer in test-memwipe.c. Fixes bug 23291; bugfix on + 0.2.7.2-alpha. Found and patched by Ties Stuij. diff --git a/src/test/test-memwipe.c b/src/test/test-memwipe.c @@ -82,7 +82,7 @@ static unsigned check_a_buffer(void) { unsigned int i; - volatile char buf[1024]; + volatile char buf[BUF_LEN]; unsigned sum = 0; /* See if this buffer has the string in it.