Open
Bug 647711
Opened 14 years ago
Updated 8 months ago
CERT_PKIXVerifyCert, bug in: if (defaultPkixVerifyParamsIn)
Categories
(NSS :: Libraries, defect, P5)
Tracking
(Not tracked)
NEW
People
(Reporter: KaiE, Unassigned)
References
Details
Attachments
(1 obsolete file)
Function CERT_PKIXVerifyCert has a for loop that processes global defaults.
The loop inside has a bug:
2271 for (j=0; paramsIn[i].type != cert_pi_end; ++j) {
2272 if (defaultPkixVerifyParamsIn[i].type == paramsIn[i].type) {
2273 skip_default_param = PR_TRUE;
2274 break;
2275 }
2276 }
Note that "j" is never used inside the loop.
Comment 1•11 years ago
|
||
Since I spent a few minutes being confused by this...
The for loop in question is part of the patch in Bug 481763, which AFAICT, has yet to land as of the posting of this comment.
Updated•2 years ago
|
Severity: normal → S3
Updated•1 year ago
|
Severity: S3 → S4
Priority: -- → P5
Updated•8 months ago
|
Attachment #9385213 -
Attachment is obsolete: true
You need to log in
before you can comment on or make changes to this bug.
Description
•