Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 Jun 2018 23:21:09 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r473095 - in head/www/waterfox: . files
Message-ID:  <201806222321.w5MNL9xD066551@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Fri Jun 22 23:21:09 2018
New Revision: 473095
URL: https://svnweb.freebsd.org/changeset/ports/473095

Log:
  www/waterfox: apply some FF61 fix

Added:
  head/www/waterfox/files/patch-bug1458048   (contents, props changed)
Modified:
  head/www/waterfox/Makefile   (contents, props changed)

Modified: head/www/waterfox/Makefile
==============================================================================
--- head/www/waterfox/Makefile	Fri Jun 22 23:16:01 2018	(r473094)
+++ head/www/waterfox/Makefile	Fri Jun 22 23:21:09 2018	(r473095)
@@ -3,7 +3,7 @@
 PORTNAME=	waterfox
 DISTVERSION=	56.2.1-19
 DISTVERSIONSUFFIX=	-gff88ad0b627dc
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	www ipv6
 
 MAINTAINER=	jbeich@FreeBSD.org

Added: head/www/waterfox/files/patch-bug1458048
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/waterfox/files/patch-bug1458048	Fri Jun 22 23:21:09 2018	(r473095)
@@ -0,0 +1,40 @@
+commit 66dfec8053be
+Author: Daniel Minor <dminor@mozilla.com>
+Date:   Wed Jun 20 21:18:50 2018 -0400
+
+    Bug 1458048 - Cherry pick usersctp rev 8789a6da02e2c7c03522bc6f275b302f6ef977fe; r=drno, a=RyanVM
+    
+    --HG--
+    extra : source : 492697e43fb4abf3cca014249bc35797f3312236
+    extra : amend_source : 2a960ee15610dd344ceffd22dab70994cbf52198
+---
+ netwerk/sctp/src/netinet/sctp_auth.c | 4 +++-
+ netwerk/sctp/src/netinet/sctp_pcb.c  | 4 +++-
+ 2 files changed, 6 insertions(+), 2 deletions(-)
+
+diff --git netwerk/sctp/src/netinet/sctp_auth.c netwerk/sctp/src/netinet/sctp_auth.c
+index 50432ad8a5954..ee5ca36ce37b1 100755
+--- netwerk/sctp/src/netinet/sctp_auth.c
++++ netwerk/sctp/src/netinet/sctp_auth.c
+@@ -1525,6 +1525,8 @@ sctp_auth_get_cookie_params(struct sctp_tcb *stcb, struct mbuf *m,
+ 	    if (p_random != NULL) {
+ 		keylen = sizeof(*p_random) + random_len;
+ 		bcopy(p_random, new_key->key, keylen);
++	    } else {
++		keylen = 0;
+ 	    }
+ 	    /* append in the AUTH chunks */
+ 	    if (chunks != NULL) {
+diff --git netwerk/sctp/src/netinet/sctp_pcb.c netwerk/sctp/src/netinet/sctp_pcb.c
+index 2970970250a2a..58c164f5039c7 100755
+--- netwerk/sctp/src/netinet/sctp_pcb.c
++++ netwerk/sctp/src/netinet/sctp_pcb.c
+@@ -7688,6 +7688,8 @@ sctp_load_addresses_from_init(struct sctp_tcb *stcb, struct mbuf *m,
+ 		if (p_random != NULL) {
+ 			keylen = sizeof(*p_random) + random_len;
+ 			bcopy(p_random, new_key->key, keylen);
++		} else {
++			keylen = 0;
+ 		}
+ 		/* append in the AUTH chunks */
+ 		if (chunks != NULL) {



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