diff options
-rw-r--r-- | xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx index cf084c7137ad..dd57a28be6da 100644 --- a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx +++ b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx @@ -249,8 +249,6 @@ void SecurityEnvironment_NssImpl::updateSlots() // continue; // } addCryptoSlot(pSlot); - PK11_FreeSlot( pSlot ) ; - pSlot = nullptr; if (pSymKey != nullptr) { @@ -261,6 +259,8 @@ void SecurityEnvironment_NssImpl::updateSlots() }// end of if(pSlot != NULL) }// end of for + + PK11_FreeSlotList(soltList); } Sequence< Reference < XCertificate > > |