Fix dead-assignment warnings in test_config.c

Found by scan-build.
This commit is contained in:
Nick Mathewson 2018-12-17 09:26:57 -05:00
parent f8dac5c900
commit 82fb40c8dc

View File

@ -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);