Fix: uninitialized local variable

error: ‘request’ may be used uninitialized [-Werror=maybe-uninitialized]

Signed-off-by: Tom Joseph <rushtotom@gmail.com>
Change-Id: Iac04b5f48ff250eb8ed3e12f9957735963e978ca
diff --git a/libpldm/tests/libpldm_fru_test.cpp b/libpldm/tests/libpldm_fru_test.cpp
index 68d68a6..8a3850c 100644
--- a/libpldm/tests/libpldm_fru_test.cpp
+++ b/libpldm/tests/libpldm_fru_test.cpp
@@ -612,7 +612,7 @@
 TEST(GetFRURecordByOption, testBadDecodeRequest)
 {
     constexpr auto payLoadLength = sizeof(pldm_get_fru_record_by_option_req);
-    std::array<uint8_t, sizeof(pldm_msg_hdr) + payLoadLength> request;
+    std::array<uint8_t, sizeof(pldm_msg_hdr) + payLoadLength> request{};
     auto reqMsg = reinterpret_cast<pldm_msg*>(request.data());
 
     uint32_t retDataTransferHandle{};