summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrrelyea%redhat.com <devnull@localhost>2007-06-16 05:18:34 +0000
committerrrelyea%redhat.com <devnull@localhost>2007-06-16 05:18:34 +0000
commitf290102ec3ac327e05fb0bcd9fba9dd5d51dc577 (patch)
tree65097aff7f1e00116b0d1d9950b86c5760a99962
parentab9d49382899f308ccd93b44cf7ae0475ea17ec5 (diff)
downloadnss-hg-f290102ec3ac327e05fb0bcd9fba9dd5d51dc577.tar.gz
Fix the last of the shared db leaks.BOB_3_12_ALPHA_TEST_1
-rw-r--r--security/nss/lib/softoken/legacydb/lginit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/security/nss/lib/softoken/legacydb/lginit.c b/security/nss/lib/softoken/legacydb/lginit.c
index 43759445d..b085fe01f 100644
--- a/security/nss/lib/softoken/legacydb/lginit.c
+++ b/security/nss/lib/softoken/legacydb/lginit.c
@@ -42,6 +42,7 @@
#include "pcert.h"
#include "keydbi.h"
#include "lgdb.h"
+#include "secoid.h"
typedef struct LGPrivateStr {
NSSLOWCERTCertDBHandle *certDB;
@@ -650,5 +651,6 @@ legacy_Shutdown(void)
{
nsslowcert_DestroyFreeLists();
nsslowcert_DestroyGlobalLocks();
+ SECOID_Shutdown();
return CKR_OK;
}