Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 689962 Details for
Bug 903017
Firefox hang when CAC/PIV smart card certificates are viewed in the certificate manager
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Fix race condition in NSS cert code related to smart cards.
race.patch (text/plain), 770 bytes, created by
Bob Relyea
on 2013-01-29 17:30:56 UTC
(
hide
)
Description:
Fix race condition in NSS cert code related to smart cards.
Filename:
MIME Type:
Creator:
Bob Relyea
Created:
2013-01-29 17:30:56 UTC
Size:
770 bytes
patch
obsolete
>Index: pki/tdcache.c >=================================================================== >RCS file: /cvsroot/mozilla/security/nss/lib/pki/tdcache.c,v >retrieving revision 1.51 >diff -u -p -r1.51 tdcache.c >--- pki/tdcache.c 17 May 2012 21:39:40 -0000 1.51 >+++ pki/tdcache.c 28 Jan 2013 23:32:40 -0000 >@@ -849,7 +849,15 @@ nssTrustDomain_AddCertsToCache ( > PRUint32 i; > NSSCertificate *c; > for (i=0; i<numCerts && certs[i]; i++) { >- c = add_cert_to_cache(td, certs[i]); >+ NSSCertificate *cert = &certs[i]; >+ if (nssCert->decoding == NULL) { >+ nssDecodedCert *deco; >+ deco = nssCerrtificate_GetDecoding(cert); >+ if (deco == NULL) { >+ return PR_FAILURE; >+ } >+ } >+ c = add_cert_to_cache(td, cert); > if (c == NULL) { > return PR_FAILURE; > } else {
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 903017
:
689962
|
784497