Skip to content

Commit 1803a80

Browse files
eivindj-nordicrlubos
authored andcommitted
lib: modem_key_mgmt: fix duplicate deletion of last cred type
Because of the ok\r\n in response from modem, the while loop iterates an extra round with scanf not matching any arguments. As the sectag matched the last credential is attempted deleted again and the function return an error. This commit fixes the issue by only deleting the credential in the modem if we match the sectag and credential type in scanf. Signed-off-by: Eivind Jølsgard <eivind.jolsgard@nordicsemi.no>
1 parent 6e0cb3a commit 1803a80

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

doc/nrf/releases_and_maturity/releases/release-notes-changelog.rst

+4
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,10 @@ Modem libraries
483483

484484
* Fixed handling of ``%NCELLMEAS`` notification with status 2 (measurement interrupted) and no cells.
485485

486+
* :ref:`modem_key_mgmt` library:
487+
488+
* Fixed an issue with the :c:func:`modem_key_mgmt_clear` function where it returned ``-ENOENT`` when the credential was cleared.
489+
486490
Multiprotocol Service Layer libraries
487491
-------------------------------------
488492

lib/modem_key_mgmt/modem_key_mgmt.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ int modem_key_mgmt_clear(nrf_sec_tag_t sec_tag)
306306

307307
while (token != NULL) {
308308
err = sscanf(token, "%%CMNG: %u,%u,\"", &tag, &type);
309-
if (tag == sec_tag) {
309+
if (tag == sec_tag && err == 2) {
310310
err = nrf_modem_at_printf("AT%%CMNG=3,%u,%u", sec_tag, type);
311311
}
312312
token = strtok(NULL, "\n");

0 commit comments

Comments
 (0)