summaryrefslogtreecommitdiff
path: root/data/patches/revert-gnuzilla-bug-973138.patch
diff options
context:
space:
mode:
authorRuben Rodriguez <ruben@gnu.org>2015-03-08 15:14:03 +0000
committerRuben Rodriguez <ruben@gnu.org>2015-03-08 15:14:03 +0000
commit9a0fd32cf6e2ada37675bc743532c5004b16e5e3 (patch)
treed66faa3279486d2e8ad72bf70e7ef522460372a0 /data/patches/revert-gnuzilla-bug-973138.patch
parent2732de330618bc29b7ab07f4004d8e84f698cf95 (diff)
Added patches to fix build bugs for Windows, MacOS and Android
Diffstat (limited to 'data/patches/revert-gnuzilla-bug-973138.patch')
-rw-r--r--data/patches/revert-gnuzilla-bug-973138.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/data/patches/revert-gnuzilla-bug-973138.patch b/data/patches/revert-gnuzilla-bug-973138.patch
new file mode 100644
index 0000000..ffd3a68
--- /dev/null
+++ b/data/patches/revert-gnuzilla-bug-973138.patch
@@ -0,0 +1,25 @@
+This patch reverts fix for gnuzilla bug:
+https://bugzilla.mozilla.org/show_bug.cgi?id=973138
+which introduces:
+https://trac.torproject.org/projects/tor/ticket/12811
+https://bugzilla.mozilla.org/show_bug.cgi?id=1049366
+
+--- a/mozglue/build/WindowsDllBlocklist.cpp 2015-01-27 19:17:08.585519129 +0100
++++ b/mozglue/build/WindowsDllBlocklist.cpp 2015-01-30 00:42:10.817863012 +0100
+@@ -551,7 +551,7 @@
+ printf_stderr("LdrLoadDll: dll name '%s'\n", dllName);
+ #endif
+
+- // Block a suspicious binary that uses various 12-digit hex strings
++/* // Block a suspicious binary that uses various 12-digit hex strings
+ // e.g. MovieMode.48CA2AEFA22D.dll (bug 973138)
+ char * dot = strchr(dllName, '.');
+ if (dot && (strchr(dot+1, '.') == dot+13)) {
+@@ -561,6 +561,7 @@
+ return STATUS_DLL_NOT_FOUND;
+ }
+ }
++*/
+
+ // then compare to everything on the blocklist
+ info = &sWindowsDllBlocklist[0];