commit | 4bc65dd8d88671712d71592a83374cfb0b5fce7a | [log] [tgz] |
---|---|---|
author | Eric Dumazet <eric.dumazet@gmail.com> | Tue Dec 07 22:26:15 2010 +0000 |
committer | David S. Miller <davem@davemloft.net> | Thu Dec 09 20:47:04 2010 -0800 |
tree | 322b1618fabdc770b8a63930ab5c320a16fe5cc5 | |
parent | 60d509c823cca21e77d537bd356785f7cfe8f0d1 [diff] |
filter: use size of fetched data in __load_pointer() __load_pointer() checks data we fetch from skb is included in head portion, but assumes we fetch one byte, instead of up to four. This wont crash because we have extra bytes (struct skb_shared_info) after head, but this can read uninitialized bytes. Fix this using size of the data (1, 2, 4 bytes) in the test. Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>