The patch titled netfilter: nf_conntrack_netbios_ns: fix uninitialized member in expectation has been removed from the -mm tree. Its filename was netfilter-nf_conntrack_netbios_ns-fix-uninitialized-member-in-expectation.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: netfilter: nf_conntrack_netbios_ns: fix uninitialized member in expectation From: Patrick McHardy <kaber@xxxxxxxxx> ->helper is uninitialized in the expectation registered by the netbios_ns helper and it later copied to the expected connection, which causes invalid memory dereferences when trying to call the helper. Signed-off-by: Patrick McHardy <kaber@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- net/netfilter/nf_conntrack_netbios_ns.c | 1 + 1 file changed, 1 insertion(+) diff -puN net/netfilter/nf_conntrack_netbios_ns.c~netfilter-nf_conntrack_netbios_ns-fix-uninitialized-member-in-expectation net/netfilter/nf_conntrack_netbios_ns.c --- a/net/netfilter/nf_conntrack_netbios_ns.c~netfilter-nf_conntrack_netbios_ns-fix-uninitialized-member-in-expectation +++ a/net/netfilter/nf_conntrack_netbios_ns.c @@ -89,6 +89,7 @@ static int help(struct sk_buff **pskb, u exp->expectfn = NULL; exp->flags = NF_CT_EXPECT_PERMANENT; + exp->helper = NULL; nf_conntrack_expect_related(exp); nf_conntrack_expect_put(exp); _ Patches currently in -mm which might be from kaber@xxxxxxxxx are origin.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html