From 2efb7daee1d9098cb2f2b91cb4b8a90c2faeb9dd Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Thu, 8 Aug 2019 12:37:17 -0700 Subject: [PATCH] lte: Avoid valgrind warning of uninitialized value --- src/lte/model/lte-rrc-sap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lte/model/lte-rrc-sap.h b/src/lte/model/lte-rrc-sap.h index 2a3cadb7b..cc2404d94 100644 --- a/src/lte/model/lte-rrc-sap.h +++ b/src/lte/model/lte-rrc-sap.h @@ -257,7 +257,7 @@ public: ///TxFailParams structure struct TxFailParam { - uint8_t connEstFailCount; ///< Number of times that the UE detects T300 expiry on the same cell + uint8_t connEstFailCount {0}; ///< Number of times that the UE detects T300 expiry on the same cell }; /// RachConfigCommon structure