[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[tor-commits] [tor/master] Fix dead-assignment warnings in test_config.c
commit 82fb40c8dc2f21753298559e79d898add80bf6b7
Author: Nick Mathewson <nickm@xxxxxxxxxxxxxx>
Date: Mon Dec 17 09:26:57 2018 -0500
Fix dead-assignment warnings in test_config.c
Found by scan-build.
---
src/test/test_config.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/test/test_config.c b/src/test/test_config.c
index 5140c3c1a..67a43d669 100644
--- a/src/test/test_config.c
+++ b/src/test/test_config.c
@@ -5783,6 +5783,7 @@ test_config_extended_fmt(void *arg)
tt_str_op(lp->value, OP_EQ, "is back here");
tt_int_op(lp->command, OP_EQ, CONFIG_LINE_NORMAL);
lp = lp->next;
+ tt_assert(!lp);
config_free_lines(lines);
/* Try with the "extended" flag enabled. */
@@ -5809,6 +5810,7 @@ test_config_extended_fmt(void *arg)
tt_str_op(lp->value, OP_EQ, "");
tt_int_op(lp->command, OP_EQ, CONFIG_LINE_CLEAR);
lp = lp->next;
+ tt_assert(!lp);
done:
config_free_lines(lines);
_______________________________________________
tor-commits mailing list
tor-commits@xxxxxxxxxxxxxxxxxxxx
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits