From 0073aa6e431fa5f2a75247777bf17b5188dd481e Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 11:41:32 +0100 Subject: [PATCH] Fix uninitialized member (#4037) (#4038) Signed-off-by: Pablo Garrido Co-authored-by: Pablo Garrido (cherry picked from commit b7fc545b36232eb297084039dd93a58b00ac8a27) Co-authored-by: Eduardo Ponz Segrelles --- include/fastdds/rtps/attributes/RTPSParticipantAttributes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fastdds/rtps/attributes/RTPSParticipantAttributes.h b/include/fastdds/rtps/attributes/RTPSParticipantAttributes.h index 78d74be6690..4386d0a8cb0 100644 --- a/include/fastdds/rtps/attributes/RTPSParticipantAttributes.h +++ b/include/fastdds/rtps/attributes/RTPSParticipantAttributes.h @@ -385,7 +385,7 @@ class BuiltinAttributes TypeLookupSettings typelookup_config; //! Network Configuration - NetworkConfigSet_t network_configuration; + NetworkConfigSet_t network_configuration = 0; //! Metatraffic Unicast Locator List LocatorList_t metatrafficUnicastLocatorList;