Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit df4e9574 authored by Samir Bellabes's avatar Samir Bellabes Committed by David S. Miller
Browse files

[NETFILTER]: nf_conntrack: fix incorrect memset() size in FTP helper



This memset() is executing with a bad size. According to Yasuyuki Kozakai,
this memset() can be deleted, as 'ftp' is declared in global area.

Signed-off-by: default avatarSamir Bellabes <sbellabes@mandriva.com>
Signed-off-by: default avatarYasuyuki Kozakai <yasuyuki.kozakai@toshiba.co.jp>
Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 19ea7302
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -657,8 +657,6 @@ static int __init init(void)
	/* FIXME should be configurable whether IPv4 and IPv6 FTP connections
		 are tracked or not - YK */
	for (i = 0; i < ports_c; i++) {
		memset(&ftp[i], 0, sizeof(struct nf_conntrack_helper));

		ftp[i][0].tuple.src.l3num = PF_INET;
		ftp[i][1].tuple.src.l3num = PF_INET6;
		for (j = 0; j < 2; j++) {