Commit 543fd89f authored by Nick Mathewson's avatar Nick Mathewson 🤹
Browse files

Merge branch 'maint-0.2.8' into maint-0.2.9

parents ab415ae9 800797e7
Loading
Loading
Loading
Loading

changes/bug23291

0 → 100644
+3 −0
Original line number Diff line number Diff line
  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.
+1 −1
Original line number Diff line number Diff line
@@ -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.