]> git.baikalelectronics.ru Git - kernel.git/commit
netfilter: nf_conntrack_sip: fix wrong memory initialisation
authorChristophe Leroy <christophe.leroy@c-s.fr>
Wed, 1 Mar 2017 14:33:26 +0000 (15:33 +0100)
committerPablo Neira Ayuso <pablo@netfilter.org>
Fri, 3 Mar 2017 12:48:31 +0000 (13:48 +0100)
commit812475876223eeac1427c31330e7b1131501b934
tree8eb62270f0633752cc4ff645d9e4f5c799e54e5f
parent4cfc8f8959b703cde7042468212ca124cf98eb8a
netfilter: nf_conntrack_sip: fix wrong memory initialisation

In commit f1bbf7d29f4d7 ("netfilter: Add helper array
register/unregister functions"),
struct nf_conntrack_helper sip[MAX_PORTS][4] was changed to
sip[MAX_PORTS * 4], so the memory init should have been changed to
memset(&sip[4 * i], 0, 4 * sizeof(sip[i]));

But as the sip[] table is allocated in the BSS, it is already set to 0

Fixes: f1bbf7d29f4d7 ("netfilter: Add helper array register/unregister functions")
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/netfilter/nf_conntrack_sip.c