We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d42735 commit ec633b2Copy full SHA for ec633b2
src/app/server/Dnssd.cpp
@@ -188,7 +188,7 @@ void DnssdServer::GetPrimaryOrFallbackMACAddress(chip::MutableByteSpan mac)
188
/// Set MDNS operational advertisement
189
CHIP_ERROR DnssdServer::AdvertiseOperational()
190
{
191
- VerifyOrDie(mFabricTable != nullptr);
+ VerifyOrReturnError(mFabricTable != nullptr, CHIP_ERROR_INCORRECT_STATE);
192
193
for (const FabricInfo & fabricInfo : *mFabricTable)
194
0 commit comments