Closed
Bug 624493
Opened 15 years ago
Closed 15 years ago
PR_Assert: Assertion failure: srclen > 0 decoding base64 buffer
Categories
(NSS :: Libraries, defect)
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 346583
People
(Reporter: bc, Unassigned)
References
Details
(Keywords: assertion, reproducible, testcase)
Attachments
(1 file)
96 bytes,
text/html
|
Details |
Evaluate the following expression in a debug build of Firefox (3.5, 3.6, or 4.0)
window.content.crypto.importUserCertificates(undefined, null, 0, undefined);
Assertion failure: srclen > 0, at nssb64d.c:565
Abort trap
http://mxr.mozilla.org/mozilla-central/source/security/nss/lib/util/nssb64d.c#565
565 PR_ASSERT(srclen > 0);
566 if (srclen == 0)
567 return dest;
This doesn't really look like an security issue as the case appears to be handled, but making security sensitive just in case and also since it was
found using Michal Zalewski's cross_fuzz tool.
Updated•15 years ago
|
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → DUPLICATE
Updated•15 years ago
|
Whiteboard: [sg:needinfo]
Updated•11 years ago
|
Group: core-security
You need to log in
before you can comment on or make changes to this bug.
Description
•