Module Name:    src
Committed By:   maxv
Date:           Mon Feb 26 06:41:27 UTC 2018

Modified Files:
        src/sys/netipsec: xform_tcp.c

Log Message:
Add XXX, it seems to me we need to free the mbuf here.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/netipsec/xform_tcp.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/netipsec/xform_tcp.c
diff -u src/sys/netipsec/xform_tcp.c:1.16 src/sys/netipsec/xform_tcp.c:1.17
--- src/sys/netipsec/xform_tcp.c:1.16	Tue Oct  3 08:56:52 2017
+++ src/sys/netipsec/xform_tcp.c	Mon Feb 26 06:41:27 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: xform_tcp.c,v 1.16 2017/10/03 08:56:52 ozaki-r Exp $ */
+/*	$NetBSD: xform_tcp.c,v 1.17 2018/02/26 06:41:27 maxv Exp $ */
 /*	$FreeBSD: sys/netipsec/xform_tcp.c,v 1.1.2.1 2004/02/14 22:24:09 bms Exp $ */
 
 /*
@@ -31,7 +31,7 @@
 /* TCP MD5 Signature Option (RFC2385) */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xform_tcp.c,v 1.16 2017/10/03 08:56:52 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xform_tcp.c,v 1.17 2018/02/26 06:41:27 maxv Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_inet.h"
@@ -144,7 +144,7 @@ static int
 tcpsignature_input(struct mbuf *m, struct secasvar *sav, int skip,
     int protoff)
 {
-
+	/* XXX m_freem(m)? */
 	return (0);
 }
 

Reply via email to