initialize variable
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good

This commit is contained in:
Robin Müller 2023-02-24 19:19:42 +01:00
parent e41f8901c5
commit 9b4026a1c9
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814

View File

@ -24,7 +24,7 @@ void TmFunnelBase::addDestination(const char *name, const AcceptsTelemetryIF &do
ReturnValue_t TmFunnelBase::sendPacketToDestinations(store_address_t origStoreId,
TmTcMessage &message,
const uint8_t *packetData, size_t size) {
ReturnValue_t result;
ReturnValue_t result = returnvalue::OK;
for (unsigned int idx = 0; idx < destinations.size(); idx++) {
const auto &dest = destinations[idx];
if (destinations.size() > 1) {