From a7135f46d833e6a840d26cf6285f175616aa6fce Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Wed, 14 Feb 2024 15:11:29 -0500 Subject: [PATCH] Update src/transport/UnauthenticatedSessionTable.h Co-authored-by: Boris Zbarsky --- src/transport/UnauthenticatedSessionTable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transport/UnauthenticatedSessionTable.h b/src/transport/UnauthenticatedSessionTable.h index d1032348170555..f5ba35df533de5 100644 --- a/src/transport/UnauthenticatedSessionTable.h +++ b/src/transport/UnauthenticatedSessionTable.h @@ -292,7 +292,7 @@ class UnauthenticatedSessionTable entryToUse = FindLeastRecentUsedEntry(); VerifyOrReturnError(entryToUse != nullptr, CHIP_ERROR_NO_MEMORY); - // clean the least recent entry to allow for a new alloc + // Drop the least recent entry to allow for a new alloc. mEntries.ReleaseObject(entryToUse); entryToUse = mEntries.CreateObject(sessionRole, ephemeralInitiatorNodeID, config, *this);