From 88a921adc73678ebebc404d5d0d0660c7478c131 Mon Sep 17 00:00:00 2001 From: "rrelyea%redhat.com" Date: Sat, 16 Jun 2007 05:18:34 +0000 Subject: [PATCH] Fix the last of the shared db leaks. git-svn-id: svn://10.0.0.236/trunk@228166 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/security/nss/lib/softoken/legacydb/lginit.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mozilla/security/nss/lib/softoken/legacydb/lginit.c b/mozilla/security/nss/lib/softoken/legacydb/lginit.c index 90497f8bf6c..de52bad5154 100644 --- a/mozilla/security/nss/lib/softoken/legacydb/lginit.c +++ b/mozilla/security/nss/lib/softoken/legacydb/lginit.c @@ -36,12 +36,13 @@ * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ -/* $Id: lginit.c,v 1.6 2007-06-15 20:37:56 rrelyea%redhat.com Exp $ */ +/* $Id: lginit.c,v 1.7 2007-06-16 05:18:34 rrelyea%redhat.com Exp $ */ #include "lowkeyi.h" #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; }