aboutsummaryrefslogtreecommitdiffstats
path: root/test/ext/vapi_cpp_test.cpp
diff options
context:
space:
mode:
authorKlement Sekera <ksekera@cisco.com>2020-06-09 14:17:45 +0000
committerDave Barach <openvpp@barachs.net>2020-06-10 11:11:07 +0000
commit35418ba491505318e0b08b372fcf1e9f0d45d80f (patch)
tree70a2abad4266eb2afb1f4bc112b43316c4f3389a /test/ext/vapi_cpp_test.cpp
parentce53363d2018071df00ffddf2ffa13c4229139a8 (diff)
vapi: memset allocated messages to zero
This avoids using dirty data from shared memory by client. Type: fix Signed-off-by: Klement Sekera <ksekera@cisco.com> Change-Id: I96eecf655bf344ec29609cedbd8dc891b572e207
Diffstat (limited to 'test/ext/vapi_cpp_test.cpp')
-rw-r--r--test/ext/vapi_cpp_test.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/ext/vapi_cpp_test.cpp b/test/ext/vapi_cpp_test.cpp
index 284b211eb81..ee0a9f38d3e 100644
--- a/test/ext/vapi_cpp_test.cpp
+++ b/test/ext/vapi_cpp_test.cpp
@@ -147,8 +147,6 @@ START_TEST (test_loopbacks_1)
bool seen[num_ifs] = {0};
Sw_interface_dump d (con);
auto &p = d.get_request ().get_payload ();
- p.name_filter_valid = 0;
- memset (p.name_filter.buf, 0, p.name_filter.length);
auto rv = d.execute ();
ck_assert_int_eq (VAPI_OK, rv);
WAIT_FOR_RESPONSE (d, rv);
@@ -189,8 +187,6 @@ START_TEST (test_loopbacks_1)
{ // new context
Sw_interface_dump d (con);
auto &p = d.get_request ().get_payload ();
- p.name_filter_valid = 0;
- memset (p.name_filter.buf, 0, p.name_filter.length);
auto rv = d.execute ();
ck_assert_int_eq (VAPI_OK, rv);
WAIT_FOR_RESPONSE (d, rv);
@@ -307,8 +303,6 @@ START_TEST (test_loopbacks_2)
Sw_interface_dump_cb<num_ifs> swdcb (ccbs);
Sw_interface_dump d (con, std::ref (swdcb));
auto &p = d.get_request ().get_payload ();
- p.name_filter_valid = 0;
- memset (p.name_filter.buf, 0, p.name_filter.length);
auto rv = d.execute ();
ck_assert_int_eq (VAPI_OK, rv);
WAIT_FOR_RESPONSE (d, rv);
@@ -336,8 +330,6 @@ START_TEST (test_loopbacks_2)
{ // new context
Sw_interface_dump d (con);
auto &p = d.get_request ().get_payload ();
- p.name_filter_valid = 0;
- memset (p.name_filter.buf, 0, p.name_filter.length);
auto rv = d.execute ();
ck_assert_int_eq (VAPI_OK, rv);
WAIT_FOR_RESPONSE (d, rv);