Skip to content

Commit 9cd0070

Browse files
Doesn't provide PIN to the unlock after unlatch when the pin length is 0. (project-chip#36405)
Co-authored-by: Andrei Litvin <andy314@gmail.com>
1 parent e3c6522 commit 9cd0070

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

examples/lock-app/silabs/src/LockManager.cpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -264,9 +264,11 @@ void LockManager::UnlockAfterUnlatch()
264264
bool succes = false;
265265
if (mUnlatchContext.mEndpointId != kInvalidEndpointId)
266266
{
267-
succes = setLockState(
268-
mUnlatchContext.mEndpointId, mUnlatchContext.mFabricIdx, mUnlatchContext.mNodeId, DlLockState::kUnlocked,
269-
MakeOptional(chip::ByteSpan(mUnlatchContext.mPinBuffer, mUnlatchContext.mPinLength)), mUnlatchContext.mErr);
267+
Optional<chip::ByteSpan> pin = (mUnlatchContext.mPinLength)
268+
? MakeOptional(chip::ByteSpan(mUnlatchContext.mPinBuffer, mUnlatchContext.mPinLength))
269+
: Optional<chip::ByteSpan>::Missing();
270+
succes = setLockState(mUnlatchContext.mEndpointId, mUnlatchContext.mFabricIdx, mUnlatchContext.mNodeId,
271+
DlLockState::kUnlocked, pin, mUnlatchContext.mErr);
270272
}
271273

272274
if (!succes)

0 commit comments

Comments
 (0)