commit | f46421416fb6b91513fb687d6503142cd99034a5 | [log] [tgz] |
---|---|---|
author | Shan Wei <shanwei@cn.fujitsu.com> | Fri Nov 05 01:56:34 2010 +0000 |
committer | David S. Miller <davem@davemloft.net> | Mon Nov 08 12:17:06 2010 -0800 |
tree | cad8e340ce9bccec9ff261a1c0d73b18382019af | |
parent | 4c46ee52589a4edd67447214eb489b10fed5c53a [diff] |
ipv6: fix overlap check for fragments The type of FRAG6_CB(prev)->offset is int, skb->len is *unsigned* int, and offset is int. Without this patch, type conversion occurred to this expression, when (FRAG6_CB(prev)->offset + prev->len) is less than offset. Signed-off-by: Shan Wei <shanwei@cn.fujitsu.com> Signed-off-by: David S. Miller <davem@davemloft.net>