Closed
Bug 195196
Opened 22 years ago
Closed 22 years ago
Apparanent typo in code. mozilla\security\nss\lib\pkix\src\Time\Compare.c
Categories
(NSS :: Build, defect, P3)
NSS
Build
Tracking
(Not tracked)
RESOLVED
FIXED
3.8
People
(Reporter: christopher.fil.milburn, Assigned: wtc)
Details
User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0; T312461; FIL Release 2)
Build Identifier: mozilla-source-1.3b
NSS_IMPLEMENT PRInt32
NSSPKIXTime_Compare
(
NSSPKIXTime *time1,
NSSPKIXTime *tiem2, //********************** should read time2 ?????
PRStatus *statusOpt
)
nss_ClearErrorStack();
#ifdef DEBUG
if( PR_SUCCESS != nssPKIXTime_verifyPointer(time1) ) {
if( (PRStatus *)NULL != statusOpt ) {
*statusOpt = PR_FAILURE;
}
return 0;
}
if( PR_SUCCESS != nssPKIXTime_verifyPointer(time2) ) {
if( (PRStatus *)NULL != statusOpt ) {
*statusOpt = PR_FAILURE;
}
return 0;
}
#endif /* DEBUG */
return nssPKIXTime_Compare(time1, time2, statusOpt);
}
Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1•22 years ago
|
||
-> NSS
Assignee: mstoltz → wtc
Component: Security: General → Build
Product: Browser → NSS
QA Contact: carosendahl → wtc
Version: Trunk → unspecified
Assignee | ||
Comment 2•22 years ago
|
||
Thank you very much for the bug report. You are right,
that's a typo. I just fixed it on the trunk of NSS.
Ian, could you fix this typo on the Stan work branch
if it is using this file?
Status: UNCONFIRMED → RESOLVED
Closed: 22 years ago
Priority: -- → P3
Resolution: --- → FIXED
Target Milestone: --- → 3.8
Comment 3•22 years ago
|
||
file no longer exists on branch.
You need to log in
before you can comment on or make changes to this bug.
Description
•