mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 12:23:32 +01:00
Merge branch 'maint-0.2.9' into maint-0.3.3
This commit is contained in:
commit
6c966b894c
3
changes/bug29145
Normal file
3
changes/bug29145
Normal file
@ -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.
|
@ -42,7 +42,8 @@ const char *s = NULL;
|
|||||||
#ifdef OpenBSD
|
#ifdef OpenBSD
|
||||||
/* Disable some of OpenBSD's malloc protections for this test. This helps
|
/* Disable some of OpenBSD's malloc protections for this test. This helps
|
||||||
* us do bad things, such as access freed buffers, without crashing. */
|
* 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
|
#endif
|
||||||
|
|
||||||
static unsigned
|
static unsigned
|
||||||
|
Loading…
Reference in New Issue
Block a user