Skip to content

Commit

Permalink
netfilter: nf_conntrack_expect: fix error path unwind in nf_conntrack…
Browse files Browse the repository at this point in the history
…_expect_init()

Signed-off-by: Alexey Dobriyan <adobriyan@parallels.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Alexey Dobriyan authored and David S. Miller committed May 29, 2008
1 parent 8c3a01d commit 12293bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/netfilter/nf_conntrack_expect.c
Original file line number Diff line number Diff line change
Expand Up @@ -587,10 +587,10 @@ int __init nf_conntrack_expect_init(void)
return 0;

err3:
kmem_cache_destroy(nf_ct_expect_cachep);
err2:
nf_ct_free_hashtable(nf_ct_expect_hash, nf_ct_expect_vmalloc,
nf_ct_expect_hsize);
err2:
kmem_cache_destroy(nf_ct_expect_cachep);
err1:
return err;
}
Expand Down

0 comments on commit 12293bf

Please sign in to comment.