diff options
author | Kris Katterjohn <katterjohn@gmail.com> | 2019-01-21 16:33:32 -0600 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-02-19 11:38:32 -0500 |
commit | 4417ac880a7f1306574365fd9cf4da2a41ac14ef (patch) | |
tree | 3ae36ba36c5be096bf062c4b4624f290f605ebf0 /changes/bug29145 | |
parent | a3f9ddcf033881ac78cda0aa7e6a9fd7195868cc (diff) | |
download | tor-4417ac880a7f1306574365fd9cf4da2a41ac14ef.tar.gz tor-4417ac880a7f1306574365fd9cf4da2a41ac14ef.zip |
Fix a compiler warning on OpenBSD
malloc_options needs to be declared extern (and declaring it extern
means we need to initialize it separately)
Fixes bug 29145; bugfix on 0.2.9.3-alpha
Signed-off-by: Kris Katterjohn <katterjohn@gmail.com>
Diffstat (limited to 'changes/bug29145')
-rw-r--r-- | changes/bug29145 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changes/bug29145 b/changes/bug29145 new file mode 100644 index 0000000000..40d3da4b91 --- /dev/null +++ b/changes/bug29145 @@ -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. |