diff options
| author | Bart De Schuymer <bdschuym@pandora.be> | 2003-12-16 20:08:33 -0800 |
|---|---|---|
| committer | David S. Miller <davem@nuts.ninka.net> | 2003-12-16 20:08:33 -0800 |
| commit | aee70930db378de7eedb1658c51c3be8cdaea35c (patch) | |
| tree | 437b4e7dc9a4bf450d15f96ac83227518d7938d5 /include/linux/skbuff.h | |
| parent | 0e70f996f011c870970eee3f584a2f9b8295cf34 (diff) | |
[BRIDGE NETFILTER]: Fix leaks and crashes in SKB handling.
- Missing nf bridge info put in ip_copy_metadata()
- Do not store nf bridge private info in the SKB control block,
parts of IPv4 use that area too and this causes corruption.
Diffstat (limited to 'include/linux/skbuff.h')
| -rw-r--r-- | include/linux/skbuff.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index b7c23dd89b9a..d19e3a2de6a3 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h @@ -107,7 +107,7 @@ struct nf_bridge_info { struct net_device *netoutdev; #endif unsigned int mask; - unsigned long hh[32 / sizeof(unsigned long)]; + unsigned long data[32 / sizeof(unsigned long)]; }; #endif |
