diff options
author | teor <teor@torproject.org> | 2019-02-27 09:38:04 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2019-02-27 09:38:04 +1000 |
commit | 15dc33849eda4fba651bf4096a9e405d737a977b (patch) | |
tree | d5b45fe34e58ed550028fedb475a21801b691ee8 /src/test | |
parent | 1216f99534319f4739cd6b90f7aa3633191c2179 (diff) | |
parent | 1a194beb2c01999e08010b44c279cbaaeeadf86c (diff) | |
download | tor-15dc33849eda4fba651bf4096a9e405d737a977b.tar.gz tor-15dc33849eda4fba651bf4096a9e405d737a977b.zip |
Merge branch 'maint-0.3.4' into maint-0.3.5
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test-memwipe.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/test-memwipe.c b/src/test/test-memwipe.c index 15e6a03d8a..43754ed1c2 100644 --- a/src/test/test-memwipe.c +++ b/src/test/test-memwipe.c @@ -47,7 +47,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 |