Skip to content

Commit

Permalink
Merge branch 'maint-0.3.3' into maint-0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
teor2345 committed Feb 26, 2019
2 parents a56b950 + 6c966b8 commit 1a194be
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions changes/bug29145
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
o Minor bugfixes (compilation, testing):
- Silence a compiler warning in test-memwipe.c on OpenBSD. Fixes
bug 29145; bugfix on 0.2.9.3-alpha. Patch from Kris Katterjohn.
3 changes: 2 additions & 1 deletion src/test/test-memwipe.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ const char *s = NULL;
#ifdef OpenBSD
/* Disable some of OpenBSD's malloc protections for this test. This helps
* us do bad things, such as access freed buffers, without crashing. */
const char *malloc_options="sufjj";
extern const char *malloc_options;
const char *malloc_options = "sufjj";
#endif

static unsigned
Expand Down

0 comments on commit 1a194be

Please sign in to comment.