From da2e1fa35985fb69345c9007a1ed33dc38f46dd5 Mon Sep 17 00:00:00 2001 From: Stefano Avallone Date: Thu, 15 May 2025 23:19:41 +0200 Subject: [PATCH] wifi: Fix valgrind issue with TXOP test --- src/wifi/test/wifi-txop-test.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wifi/test/wifi-txop-test.cc b/src/wifi/test/wifi-txop-test.cc index c8d254391..a87dee9bc 100644 --- a/src/wifi/test/wifi-txop-test.cc +++ b/src/wifi/test/wifi-txop-test.cc @@ -199,6 +199,8 @@ WifiTxopTest::WifiTxopTest(const WifiTxopTest::Params& params) m_singleRtsPerTxop(params.singleRtsPerTxop), m_lengthBasedRtsCtsThresh(params.lengthBasedRtsCtsThresh), m_protectedIfResponded(params.protectedIfResponded), + m_protectSingleExchange(params.protectSingleExchange), + m_singleExchangeProtectionSurplus(params.singleExchangeProtectionBuffer), m_apErrorModel(CreateObject()), m_staErrorModel(CreateObject()), m_apCorrupted(false),