Closed Bug 289047 Opened 19 years ago Closed 19 years ago

secmod_ModuleInit called at wrong time

Categories

(NSS :: Libraries, defect)

defect
Not set
normal

Tracking

(Not tracked)

RESOLVED DUPLICATE of bug 288726

People

(Reporter: lvcipriani, Assigned: wtc)

Details

User-Agent:       Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2


at line 1141 of mozilla/security/nss/lib/pk11wrap/pk11util.c there is:

	if (crv = CKR_OK) {                  // problem line
	    secmod_ModuleInit(mod);
	} else {


probably should be:

	if (crv == CKR_OK) {
	    secmod_ModuleInit(mod);
	} else {


Reproducible: Always

Steps to Reproduce:
1. see source code


Expected Results:  
see Details field
Thanks for the bug report.  This bug has been fixed
on the NSS trunk and will be in the upcoming NSS 3.10
release.

*** This bug has been marked as a duplicate of 288726 ***
Group: security
Status: UNCONFIRMED → RESOLVED
CC list accessible: false
Closed: 19 years ago
Not accessible to reporter
Resolution: --- → DUPLICATE
Target Milestone: --- → 3.10
You need to log in before you can comment on or make changes to this bug.