svn commit: r361227 - head/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Mon May 18 19:48:39 UTC 2020


Author: tuexen
Date: Mon May 18 19:48:38 2020
New Revision: 361227
URL: https://svnweb.freebsd.org/changeset/base/361227

Log:
  Remove assignment without effect.
  
  MFC after:	3 days

Modified:
  head/sys/netinet/sctp_auth.c

Modified: head/sys/netinet/sctp_auth.c
==============================================================================
--- head/sys/netinet/sctp_auth.c	Mon May 18 19:35:46 2020	(r361226)
+++ head/sys/netinet/sctp_auth.c	Mon May 18 19:48:38 2020	(r361227)
@@ -658,7 +658,6 @@ sctp_free_hmaclist(sctp_hmaclist_t *list)
 {
 	if (list != NULL) {
 		SCTP_FREE(list, SCTP_M_AUTH_HL);
-		list = NULL;
 	}
 }
 


More information about the svn-src-all mailing list