Skip to content

Commit dfe2477

Browse files
Check whether we actually have a GroupId before trying to use it. (#36729)
This avoids a crash on malformed messages (which will get dropped further down the pipeline, due to not being valid). Fixes #36711 Co-authored-by: Andrei Litvin <andy314@gmail.com>
1 parent 6af4037 commit dfe2477

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/messaging/ExchangeMgr.cpp

+9-2
Original file line numberDiff line numberDiff line change
@@ -284,8 +284,15 @@ void ExchangeManager::OnMessageReceived(const PacketHeader & packetHeader, const
284284
}
285285
else
286286
{
287-
ChipLogProgress(ExchangeManager, "Received Groupcast Message with GroupId 0x%04X (%d)",
288-
packetHeader.GetDestinationGroupId().Value(), packetHeader.GetDestinationGroupId().Value());
287+
if (packetHeader.GetDestinationGroupId().HasValue())
288+
{
289+
ChipLogProgress(ExchangeManager, "Received Groupcast Message with GroupId 0x%04X (%d)",
290+
packetHeader.GetDestinationGroupId().Value(), packetHeader.GetDestinationGroupId().Value());
291+
}
292+
else
293+
{
294+
ChipLogProgress(ExchangeManager, "Received Groupcast Message without GroupId");
295+
}
289296
}
290297

291298
// Do not handle messages that don't match an existing exchange on an

0 commit comments

Comments
 (0)