diff options
author | Martin Stransky <stransky@redhat.com> | 2019-11-26 11:08:35 +0100 |
---|---|---|
committer | Martin Stransky <stransky@redhat.com> | 2019-11-26 11:08:35 +0100 |
commit | 52405647049f7e1aa421752dcf1beb326978593b (patch) | |
tree | c0ea961790d87321e590438be96675757d087e7b /mozilla-1579023.patch | |
parent | Merge branch 'master' into f30 (diff) | |
parent | Updated to 71.0 Build 2 (diff) | |
download | librewolf-fedora-ff-52405647049f7e1aa421752dcf1beb326978593b.tar.gz librewolf-fedora-ff-52405647049f7e1aa421752dcf1beb326978593b.tar.bz2 librewolf-fedora-ff-52405647049f7e1aa421752dcf1beb326978593b.zip |
Merge branch 'master' into f30
Diffstat (limited to 'mozilla-1579023.patch')
-rw-r--r-- | mozilla-1579023.patch | 23 |
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 - |