commit | a50bb7b9af9a7c39b2aba15678eb686ae428718c | [log] [tgz] |
---|---|---|
author | Jesper Juhl <jesper.juhl@gmail.com> | Tue May 09 23:14:35 2006 -0700 |
committer | David S. Miller <davem@davemloft.net> | Tue May 09 23:14:35 2006 -0700 |
tree | f741922e4dbc4920548d7d4b68cf5eb37c11f85e | |
parent | 8c1056839e808aad728db86d739ffec71d2d1db8 [diff] |
[TG3]: Fix possible NULL deref in tg3_run_loopback(). tg3_run_loopback doesn't check that dev_alloc_skb() returns anything useful. Even if dev_alloc_skb() fails to return an skb to us we'll happily go on and assume it did, so we risk dereferencing a NULL pointer. Much better to fail gracefully by returning -ENOMEM than crashing here. Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>