diff options
author | Vasily Averin <vvs@openvz.org> | 2006-10-31 00:13:28 +0100 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-10-31 00:24:45 +0100 |
commit | ef4512e76679b4f4997f60f93f8a576a0d20c26b (patch) | |
tree | e8de46772534dd932201cc7a0757ba1ac817c5d5 /net | |
parent | [NETFILTER]: Missed and reordered checks in {arp,ip,ip6}_tables (diff) | |
download | linux-ef4512e76679b4f4997f60f93f8a576a0d20c26b.tar.xz linux-ef4512e76679b4f4997f60f93f8a576a0d20c26b.zip |
[NETFILTER]: ip_tables: compat error way cleanup
This patch adds forgotten compat_flush_offset() call to error way of
translate_compat_table(). May lead to table corruption on the next
compat_do_replace().
Signed-off-by: Vasily Averin <vvs@openvz.org>
Acked-by: Dmitry Mishin <dim@openvz.org>
Acked-by: Kirill Korotaev <dev@openvz.org>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv4/netfilter/ip_tables.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv4/netfilter/ip_tables.c b/net/ipv4/netfilter/ip_tables.c index e2c7f6e024c5..0f4835cf0e4d 100644 --- a/net/ipv4/netfilter/ip_tables.c +++ b/net/ipv4/netfilter/ip_tables.c @@ -1725,6 +1725,7 @@ free_newinfo: out: return ret; out_unlock: + compat_flush_offsets(); xt_compat_unlock(AF_INET); goto out; } |