svn commit: r467839 - in head/www/waterfox: . files
Jan Beich
jbeich at FreeBSD.org
Fri Apr 20 20:08:06 UTC 2018
Author: jbeich
Date: Fri Apr 20 20:08:04 2018
New Revision: 467839
URL: https://svnweb.freebsd.org/changeset/ports/467839
Log:
www/waterfox: apply some FF60 fixes
Added:
head/www/waterfox/files/patch-bug1443149 (contents, props changed)
head/www/waterfox/files/patch-bug1450538 (contents, props changed)
Modified:
head/www/waterfox/Makefile (contents, props changed)
Modified: head/www/waterfox/Makefile
==============================================================================
--- head/www/waterfox/Makefile Fri Apr 20 20:05:53 2018 (r467838)
+++ head/www/waterfox/Makefile Fri Apr 20 20:08:04 2018 (r467839)
@@ -2,7 +2,7 @@
PORTNAME= waterfox
DISTVERSION= 56.1.0
-PORTREVISION= 12
+PORTREVISION= 13
CATEGORIES= www ipv6
MAINTAINER= jbeich at FreeBSD.org
Added: head/www/waterfox/files/patch-bug1443149
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/waterfox/files/patch-bug1443149 Fri Apr 20 20:08:04 2018 (r467839)
@@ -0,0 +1,32 @@
+commit b28daeec3432
+Author: Jamie Nicol <jnicol at mozilla.com>
+Date: Wed Mar 14 16:42:37 2018 +0000
+
+ Bug 1443149 - Ensure WebGLFBAttachPoint::HasImage() before dereferencing Format(). r=jrmuizel a=jcristau
+
+ Previously we were checking IsDefined() rather than HasImage(), but
+ were hitting crashes. This was because Format() can return null if the
+ attach point is defined but the attached texture level or renderbuffer
+ aren't themselves defined. HasImage() checks for this case.
+
+ MozReview-Commit-ID: 8KY3zPXXAFv
+
+ --HG--
+ extra : source : ebb9f83337a22ae8e77c3e7129f65178f1bedec5
+---
+ dom/canvas/WebGLContextFramebufferOperations.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git dom/canvas/WebGLContextFramebufferOperations.cpp dom/canvas/WebGLContextFramebufferOperations.cpp
+index 7133cdec2448..84a58e9da49f 100644
+--- dom/canvas/WebGLContextFramebufferOperations.cpp
++++ dom/canvas/WebGLContextFramebufferOperations.cpp
+@@ -33,7 +33,7 @@ WebGLContext::Clear(GLbitfield mask)
+ if (mask & LOCAL_GL_COLOR_BUFFER_BIT && mBoundDrawFramebuffer) {
+ if (mask & LOCAL_GL_COLOR_BUFFER_BIT) {
+ for (const auto& cur : mBoundDrawFramebuffer->ColorDrawBuffers()) {
+- if (!cur->IsDefined())
++ if (!cur->HasImage())
+ continue;
+
+ switch (cur->Format()->format->componentType) {
Added: head/www/waterfox/files/patch-bug1450538
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/waterfox/files/patch-bug1450538 Fri Apr 20 20:08:04 2018 (r467839)
@@ -0,0 +1,27 @@
+commit 62f1f53340be
+Author: Masatoshi Kimura <VYV03354 at nifty.ne.jp>
+Date: Sat Apr 14 10:29:36 2018 +0900
+
+ Bug 1450538 - Use nsIURI::GetDisplaySpec to compensate a change to nsIURI::GetSpec. r=valentin a=jcristau
+
+ MozReview-Commit-ID: 5xYAbx78K3q
+
+ --HG--
+ extra : source : aee0f2f18cde9801a95357c309bcdce7adf0f4f6
+---
+ docshell/base/nsDocShell.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git docshell/base/nsDocShell.cpp docshell/base/nsDocShell.cpp
+index 608977e54ec7..aae0e29265be 100644
+--- docshell/base/nsDocShell.cpp
++++ docshell/base/nsDocShell.cpp
+@@ -13816,7 +13816,7 @@ nsDocShell::OnOverLink(nsIContent* aContent,
+ }
+
+ nsAutoCString spec;
+- rv = aURI->GetSpec(spec);
++ rv = aURI->GetDisplaySpec(spec);
+ NS_ENSURE_SUCCESS(rv, rv);
+
+ NS_ConvertUTF8toUTF16 uStr(spec);
More information about the svn-ports-all
mailing list