From 0d4992b256d115e153513854a49e46147b6da7c2 Mon Sep 17 00:00:00 2001 From: Mart Somermaa Date: Fri, 19 Jul 2024 18:52:13 +0300 Subject: [PATCH] Add Pkcs11ElectronicID::release() WE2-911 Signed-off-by: Mart Somermaa --- lib/libelectronic-id | 2 +- src/controller/threads/commandhandlerconfirmthread.hpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/libelectronic-id b/lib/libelectronic-id index 2d2ab20c..7991e0ec 160000 --- a/lib/libelectronic-id +++ b/lib/libelectronic-id @@ -1 +1 @@ -Subproject commit 2d2ab20cf92561533546c646eba4c4da64e17f5f +Subproject commit 7991e0ecc5839a12d076166f663de5f3c7dcb8c0 diff --git a/src/controller/threads/commandhandlerconfirmthread.hpp b/src/controller/threads/commandhandlerconfirmthread.hpp index 3654d391..f1621546 100644 --- a/src/controller/threads/commandhandlerconfirmthread.hpp +++ b/src/controller/threads/commandhandlerconfirmthread.hpp @@ -43,6 +43,7 @@ class CommandHandlerConfirmThread : public ControllerChildThread void doRun() override { const auto result = commandHandler.onConfirm(window, cardCertAndPinInfo); + cardCertAndPinInfo.cardInfo->eid().release(); emit completed(result); }