summaryrefslogtreecommitdiff
path: root/mozilla-1579023.patch
diff options
context:
space:
mode:
Diffstat (limited to 'mozilla-1579023.patch')
-rw-r--r--mozilla-1579023.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/mozilla-1579023.patch b/mozilla-1579023.patch
deleted file mode 100644
index 32881b9..0000000
--- a/mozilla-1579023.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff --git a/security/manager/ssl/nsNSSComponent.cpp b/security/manager/ssl/nsNSSComponent.cpp
---- a/security/manager/ssl/nsNSSComponent.cpp
-+++ b/security/manager/ssl/nsNSSComponent.cpp
-@@ -683,10 +683,17 @@
- AutoSECMODListReadLock secmodLock;
- SECMODModuleList* list = SECMOD_GetDefaultModuleList();
- while (list) {
-- if (SECMOD_HasRemovableSlots(list->module)) {
-+ SECMODModule* module = list->module;
-+ if (SECMOD_HasRemovableSlots(module)) {
- *result = true;
- return NS_OK;
- }
-+ for (int i = 0; i < module->slotCount; i++) {
-+ if (!PK11_IsFriendly(module->slots[i])) {
-+ *result = true;
-+ return NS_OK;
-+ }
-+ }
- list = list->next;
- }
- #endif
-
bgstack15