aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_protover.c
diff options
context:
space:
mode:
authorcypherpunks <cypherpunks@torproject.org>2018-09-21 04:57:26 +0000
committercypherpunks <cypherpunks@torproject.org>2018-09-21 04:57:26 +0000
commitdb89b4b1527103455e1bd85839a88d614a402354 (patch)
treeb0d0089d7cb10449511ca0e65490ffd617db676f /src/test/test_protover.c
parent75b95e1c8e28e1136b5bc98fd89321e478f4b836 (diff)
downloadtor-db89b4b1527103455e1bd85839a88d614a402354.tar.gz
tor-db89b4b1527103455e1bd85839a88d614a402354.zip
rust/protover: fix null deref in protover_all_supported()
Fortunately with the current callers it couldn't happen in practice. Fix on d1820c1516a31a149fc51a9e5126bf899e4c4e08.
Diffstat (limited to 'src/test/test_protover.c')
-rw-r--r--src/test/test_protover.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/test_protover.c b/src/test/test_protover.c
index fb374c728b..d1fc7752dd 100644
--- a/src/test/test_protover.c
+++ b/src/test/test_protover.c
@@ -259,6 +259,7 @@ test_protover_all_supported(void *arg)
tt_ptr_op(msg, OP_EQ, NULL);
// Some things we don't support
+ tt_assert(! protover_all_supported("Wombat=9", NULL));
tt_assert(! protover_all_supported("Wombat=9", &msg));
tt_str_op(msg, OP_EQ, "Wombat=9");
tor_free(msg);