diff options
author | rrelyea%redhat.com <devnull@localhost> | 2007-06-16 05:18:34 +0000 |
---|---|---|
committer | rrelyea%redhat.com <devnull@localhost> | 2007-06-16 05:18:34 +0000 |
commit | f290102ec3ac327e05fb0bcd9fba9dd5d51dc577 (patch) | |
tree | 65097aff7f1e00116b0d1d9950b86c5760a99962 | |
parent | ab9d49382899f308ccd93b44cf7ae0475ea17ec5 (diff) | |
download | nss-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.c | 2 |
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; } |