svn commit: r316823 - head/sys/kern

Andrey V. Elsukov ae at FreeBSD.org
Fri Apr 14 10:21:39 UTC 2017


Author: ae
Date: Fri Apr 14 10:21:38 2017
New Revision: 316823
URL: https://svnweb.freebsd.org/changeset/base/316823

Log:
  Fix the build.
  
  Reported by:	lwhsu

Modified:
  head/sys/kern/uipc_sockbuf.c

Modified: head/sys/kern/uipc_sockbuf.c
==============================================================================
--- head/sys/kern/uipc_sockbuf.c	Fri Apr 14 09:00:48 2017	(r316822)
+++ head/sys/kern/uipc_sockbuf.c	Fri Apr 14 10:21:38 2017	(r316823)
@@ -796,7 +796,7 @@ sbappendaddr_locked_internal(struct sock
 	bcopy(asa, mtod(m, caddr_t), asa->sa_len);
 	if (m0) {
 		m_clrprotoflags(m0);
-		m_tag_delete_chain(m0);
+		m_tag_delete_chain(m0, NULL);
 		/*
 		 * Clear some persistent info from pkthdr.
 		 * We don't use m_demote(), because some netgraph consumers


More information about the svn-src-head mailing list