Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Apr 2018 23:00:26 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r467850 - in branches/2018Q2/www/waterfox: . files
Message-ID:  <201804202300.w3KN0QgL011841@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Fri Apr 20 23:00:25 2018
New Revision: 467850
URL: https://svnweb.freebsd.org/changeset/ports/467850

Log:
  MFH: r467839
  
  www/waterfox: apply some FF60 fixes
  
  Approved by:	ports-secteam blanket

Added:
  branches/2018Q2/www/waterfox/files/patch-bug1443149
     - copied unchanged from r467839, head/www/waterfox/files/patch-bug1443149
  branches/2018Q2/www/waterfox/files/patch-bug1450538
     - copied unchanged from r467839, head/www/waterfox/files/patch-bug1450538
Modified:
  branches/2018Q2/www/waterfox/Makefile
Directory Properties:
  branches/2018Q2/   (props changed)

Modified: branches/2018Q2/www/waterfox/Makefile
==============================================================================
--- branches/2018Q2/www/waterfox/Makefile	Fri Apr 20 22:46:22 2018	(r467849)
+++ branches/2018Q2/www/waterfox/Makefile	Fri Apr 20 23:00:25 2018	(r467850)
@@ -2,7 +2,7 @@
 
 PORTNAME=	waterfox
 DISTVERSION=	56.1.0
-PORTREVISION=	12
+PORTREVISION=	13
 CATEGORIES=	www ipv6
 
 MAINTAINER=	jbeich@FreeBSD.org

Copied: branches/2018Q2/www/waterfox/files/patch-bug1443149 (from r467839, head/www/waterfox/files/patch-bug1443149)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2018Q2/www/waterfox/files/patch-bug1443149	Fri Apr 20 23:00:25 2018	(r467850, copy of r467839, head/www/waterfox/files/patch-bug1443149)
@@ -0,0 +1,32 @@
+commit b28daeec3432
+Author: Jamie Nicol <jnicol@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) {

Copied: branches/2018Q2/www/waterfox/files/patch-bug1450538 (from r467839, head/www/waterfox/files/patch-bug1450538)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2018Q2/www/waterfox/files/patch-bug1450538	Fri Apr 20 23:00:25 2018	(r467850, copy of r467839, head/www/waterfox/files/patch-bug1450538)
@@ -0,0 +1,27 @@
+commit 62f1f53340be
+Author: Masatoshi Kimura <VYV03354@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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804202300.w3KN0QgL011841>