Skip to content

Commit

Permalink
Address review comment
Browse files Browse the repository at this point in the history
  • Loading branch information
bzbarsky-apple committed Mar 14, 2022
1 parent c235545 commit f04040c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/controller/CHIPDeviceController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,8 @@ void DeviceController::OnFirstMessageDeliveryFailed(const SessionHandle & sessio
return;
}

FabricIndex ourIndex;
CHIP_ERROR err = GetFabricIndex(&ourIndex);
FabricIndex ourIndex = kUndefinedFabricIndex;
CHIP_ERROR err = GetFabricIndex(&ourIndex);
if (err != CHIP_NO_ERROR)
{
// We can't really do CASE, now can we?
Expand Down

0 comments on commit f04040c

Please sign in to comment.