diff options
| author | Dave Jones <davej@redhat.com> | 2011-05-27 20:36:51 -0400 |
|---|---|---|
| committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2011-06-05 19:37:16 -0400 |
| commit | d232b8dded624af3e346b13807a591c63b601c44 (patch) | |
| tree | 722088abe0459a4c425d0f2e14bb74e03cd6bab5 /net/ipv6 | |
| parent | 88ed01d17b44bc2bed4ad4835d3b1099bff3dd71 (diff) | |
netfilter: use unsigned variables for packet lengths in ip[6]_queue.
Netlink message lengths can't be negative, so use unsigned variables.
Signed-off-by: Dave Jones <davej@redhat.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/ipv6')
| -rw-r--r-- | net/ipv6/netfilter/ip6_queue.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv6/netfilter/ip6_queue.c b/net/ipv6/netfilter/ip6_queue.c index 413ab0754e1..065fe405fb5 100644 --- a/net/ipv6/netfilter/ip6_queue.c +++ b/net/ipv6/netfilter/ip6_queue.c | |||
| @@ -403,7 +403,8 @@ ipq_dev_drop(int ifindex) | |||
| 403 | static inline void | 403 | static inline void |
| 404 | __ipq_rcv_skb(struct sk_buff *skb) | 404 | __ipq_rcv_skb(struct sk_buff *skb) |
| 405 | { | 405 | { |
| 406 | int status, type, pid, flags, nlmsglen, skblen; | 406 | int status, type, pid, flags; |
| 407 | unsigned int nlmsglen, skblen; | ||
| 407 | struct nlmsghdr *nlh; | 408 | struct nlmsghdr *nlh; |
| 408 | 409 | ||
| 409 | skblen = skb->len; | 410 | skblen = skb->len; |
