Skip to content

Commit f661ce0

Browse files
Relax the integrity requirement to allow private functions to call themselves
1 parent 07bcbeb commit f661ce0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

features/FEATURE_BLE/ble/generic/SecurityDb.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -750,31 +750,31 @@ class SecurityDb {
750750

751751
/**
752752
* This will read in the requested information into a buffer that will remain valid
753-
* until another read_in call is made.
753+
* until another read_in call is made or an entry is written.
754754
* @param db_handle handle of the entry to be read
755755
* @return pointer to buffer holding the query result, NULL when not found
756756
*/
757757
virtual SecurityEntryIdentity_t* read_in_entry_peer_identity(entry_handle_t db_handle) = 0;
758758

759759
/**
760760
* This will read in the requested information into a buffer that will remain valid
761-
* until another read_in call is made.
761+
* until another read_in call is made or an entry is written.
762762
* @param db_handle handle of the entry to be read
763763
* @return pointer to buffer holding the query result, NULL when not found
764764
*/
765765
virtual SecurityEntryKeys_t* read_in_entry_peer_keys(entry_handle_t db_handle) = 0;
766766

767767
/**
768768
* This will read in the requested information into a buffer that will remain valid
769-
* until another read_in call is made.
769+
* until another read_in call is made or an entry is written.
770770
* @param db_handle handle of the entry to be read
771771
* @return pointer to buffer holding the query result, NULL when not found
772772
*/
773773
virtual SecurityEntryKeys_t* read_in_entry_local_keys(entry_handle_t db_handle) = 0;
774774

775775
/**
776776
* This will read in the requested information into a buffer that will remain valid
777-
* until another read_in call is made.
777+
* until another read_in call is made or an entry is written.
778778
* @param db_handle handle of the entry to be read
779779
* @return pointer to buffer holding the query result, NULL when not found
780780
*/

0 commit comments

Comments
 (0)