pkcs15-sc-hsm: fix commit c4d7bb1

Set the trigger for LOG_TEST_RET() to a negative value if obj.data == NULL.
This commit is contained in:
Peter Marschall 2020-07-26 11:48:53 +02:00 committed by Jakub Jelen
parent 978c912c70
commit 07e98b5193
1 changed files with 3 additions and 3 deletions

View File

@ -794,9 +794,9 @@ static int sc_pkcs15emu_sc_hsm_add_cd(sc_pkcs15_card_t * p15card, u8 id) {
memset(&obj, 0, sizeof(obj));
r = sc_pkcs15_decode_cdf_entry(p15card, &obj, &ptr, &len);
if (obj.data == NULL || r != SC_SUCCESS) {
LOG_TEST_RET(card->ctx, r, "Skipping optional EF.CDOD");
}
if (obj.data == NULL && r >= SC_SUCCESS)
r = SC_ERROR_OBJECT_NOT_FOUND;
LOG_TEST_RET(card->ctx, r, "Skipping optional EF.CDOD");
cert_info = (sc_pkcs15_cert_info_t *)obj.data;