Comment #4 on issue 16654 by [email protected]: Crash in base::HMAC::Init
http://code.google.com/p/chromium/issues/detail?id=16654

hmac_nss.cc hasn't changed since 2009-05-05.  Line 65 is:

   if (plat_->slot_.get() || plat_->slot_.get()) {
     // Init must not be called more than twice on the same HMAC object.
     NOTREACHED();
     return false;
   }

   plat_->slot_.reset(PK11_GetBestSlot(CKM_SHA_1_HMAC, NULL)); <= CRASH
   if (!plat_->slot_.get()) {
     NOTREACHED();
     return false;
   }

So we're crashing in PK11_GetBestSlot(CKM_SHA_1_HMAC, NULL).
It would be nice to find out if these crashes occurred at
Chrome shutdown, after NSS had been shut down.

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~----------~----~----~----~------~----~------~--~---

Reply via email to