svn commit: r361480 - stable/11/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Mon May 25 21:14:24 UTC 2020


Author: tuexen
Date: Mon May 25 21:14:23 2020
New Revision: 361480
URL: https://svnweb.freebsd.org/changeset/base/361480

Log:
  MFC r361227: remove assignment without effect.

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

Modified: stable/11/sys/netinet/sctp_auth.c
==============================================================================
--- stable/11/sys/netinet/sctp_auth.c	Mon May 25 20:23:38 2020	(r361479)
+++ stable/11/sys/netinet/sctp_auth.c	Mon May 25 21:14:23 2020	(r361480)
@@ -656,7 +656,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 mailing list