netfilter: ct_extend: fix the wrong alloc_size

In function update_alloc_size(), sizeof(struct nf_ct_ext) is added twice
wrongly.

Signed-off-by: Changli Gao <xiaosuo@gmail.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
This commit is contained in:
Changli Gao
2010-11-15 11:47:52 +01:00
committed by Patrick McHardy
parent b468645d72
commit 3b23688069

View File

@@ -144,9 +144,8 @@ static void update_alloc_size(struct nf_ct_ext_type *type)
if (!t1) if (!t1)
continue; continue;
t1->alloc_size = sizeof(struct nf_ct_ext) t1->alloc_size = ALIGN(sizeof(struct nf_ct_ext), t1->align) +
+ ALIGN(sizeof(struct nf_ct_ext), t1->align) t1->len;
+ t1->len;
for (j = 0; j < NF_CT_EXT_NUM; j++) { for (j = 0; j < NF_CT_EXT_NUM; j++) {
t2 = nf_ct_ext_types[j]; t2 = nf_ct_ext_types[j];
if (t2 == NULL || t2 == t1 || if (t2 == NULL || t2 == t1 ||