Bug 171263 - NSS test apps shd check return value of NSS_Shutdown

git-svn-id: svn://10.0.0.236/trunk@136263 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bishakhabanerjee%netscape.com 2003-01-13 22:36:39 +00:00
parent 9e0b285c05
commit eb7f1a0603

View File

@ -610,6 +610,10 @@ PRInt32 main(PRInt32 argc,char **argv, char **envp)
PR_Close(s);
if (NSS_Shutdown() != SECSuccess) {
exit(1);
}
return(0);
} /* main */