From 41edb62c4630a5bed31da8f03323b030344f0563 Mon Sep 17 00:00:00 2001 From: Martin Stransky Date: Tue, 26 Nov 2019 11:08:00 +0100 Subject: Updated to 71.0 Build 2 --- mozilla-1579023.patch | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 mozilla-1579023.patch (limited to 'mozilla-1579023.patch') 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 - -- cgit