diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/netfilter/nf_conntrack_core.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/net/netfilter/nf_conntrack_core.c b/net/netfilter/nf_conntrack_core.c index 94000a4c7dcf..e8b5c2d7db62 100644 --- a/net/netfilter/nf_conntrack_core.c +++ b/net/netfilter/nf_conntrack_core.c | |||
@@ -888,8 +888,13 @@ void nf_conntrack_alter_reply(struct nf_conn *ct, | |||
888 | NF_CT_DUMP_TUPLE(newreply); | 888 | NF_CT_DUMP_TUPLE(newreply); |
889 | 889 | ||
890 | ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply; | 890 | ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply; |
891 | if (!ct->master && help && help->expecting == 0) | 891 | if (!ct->master && help && help->expecting == 0) { |
892 | help->helper = __nf_ct_helper_find(newreply); | 892 | struct nf_conntrack_helper *helper; |
893 | helper = __nf_ct_helper_find(newreply); | ||
894 | if (helper) | ||
895 | memset(&help->help, 0, sizeof(help->help)); | ||
896 | help->helper = helper; | ||
897 | } | ||
893 | write_unlock_bh(&nf_conntrack_lock); | 898 | write_unlock_bh(&nf_conntrack_lock); |
894 | } | 899 | } |
895 | EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply); | 900 | EXPORT_SYMBOL_GPL(nf_conntrack_alter_reply); |