aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/unittest
diff options
context:
space:
mode:
authorNeale Ranns <neale@graphiant.com>2022-10-13 05:39:11 +0000
committerOle Tr�an <otroan@employees.org>2022-10-17 05:43:14 +0000
commit80c0ae24378f249b3be9a02774d844c13143cd99 (patch)
treec812e04785c8b6c04903c45e0548e0b538a79e99 /src/plugins/unittest
parent368dab36991a875a62b01bbd66940b419146a911 (diff)
vlib: Counter free needs to NULL the allocated counter vector
otherwise the next time the counter is validated this is dangling. Type: fix Fixes: 58fd481d73 Signed-off-by: Neale Ranns <neale@graphiant.com> Change-Id: Ifa8d5ff27175cf6dfb30cbf023fa3251fe5c780e
Diffstat (limited to 'src/plugins/unittest')
-rw-r--r--src/plugins/unittest/counter_test.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/plugins/unittest/counter_test.c b/src/plugins/unittest/counter_test.c
index 65c03fe89f1..71f8f93f94d 100644
--- a/src/plugins/unittest/counter_test.c
+++ b/src/plugins/unittest/counter_test.c
@@ -89,6 +89,9 @@ test_simple_counter_expand (vlib_main_t *vm)
epoch = new_epoch;
}
+ vlib_free_simple_counter (&counter);
+ vlib_validate_simple_counter (&counter, 0);
+
return 0;
}
@@ -136,6 +139,9 @@ test_combined_counter_expand (vlib_main_t *vm)
epoch = new_epoch;
}
+ vlib_free_combined_counter (&counter);
+ vlib_validate_combined_counter (&counter, 0);
+
return 0;
}