Bug 415167, Memory leak in certutil
Follow up patch to fix a deadlock regression, bug 434808 Patch contributed by Julien Pierre r=kaie, r=nelson git-svn-id: svn://10.0.0.236/trunk@251938 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
6db654161f
commit
e7efdb5d1c
@ -2887,8 +2887,6 @@ shutdown:
|
||||
if ((initialized == PR_TRUE) && NSS_Shutdown() != SECSuccess) {
|
||||
exit(1);
|
||||
}
|
||||
PR_Cleanup();
|
||||
|
||||
if (rv == SECSuccess) {
|
||||
return 0;
|
||||
} else {
|
||||
@ -2899,5 +2897,8 @@ shutdown:
|
||||
int
|
||||
main(int argc, char **argv)
|
||||
{
|
||||
return certutil_main(argc, argv, PR_TRUE);
|
||||
int rv = certutil_main(argc, argv, PR_TRUE);
|
||||
PR_Cleanup();
|
||||
return rv;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user