svn commit: r364593 - stable/12/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Sun Aug 23 23:17:52 UTC 2020


Author: tuexen
Date: Sun Aug 23 23:17:51 2020
New Revision: 364593
URL: https://svnweb.freebsd.org/changeset/base/364593

Log:
  MFC r361227:
  Remove assignment without effect.

Modified:
  stable/12/sys/netinet/sctp_auth.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/netinet/sctp_auth.c
==============================================================================
--- stable/12/sys/netinet/sctp_auth.c	Sun Aug 23 23:16:14 2020	(r364592)
+++ stable/12/sys/netinet/sctp_auth.c	Sun Aug 23 23:17:51 2020	(r364593)
@@ -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-stable-12 mailing list