diff options
author | Michael Brown <mcb30@ipxe.org> | 2019-08-17 17:30:09 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2019-08-17 17:30:09 +0100 |
commit | f1e6efa40be7bee1b29eb7ef7af5d0192edb888a (patch) | |
tree | 2484cbc29de4acf0aeb7f1817d5d26df286132df | |
parent | a5c41483d226a6c4dbfaf35f57dc092cd57bc601 (diff) | |
download | ipxe-f1e6efa40be7bee1b29eb7ef7af5d0192edb888a.tar.gz |
[ethernet] Avoid false positive Coverity warning
Signed-off-by: Michael Brown <mcb30@ipxe.org>
-rw-r--r-- | src/net/ethernet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/ethernet.c b/src/net/ethernet.c index 707bdf905..3fcdafe6d 100644 --- a/src/net/ethernet.c +++ b/src/net/ethernet.c @@ -134,7 +134,7 @@ int eth_pull ( struct net_device *netdev __unused, struct io_buffer *iobuf, * frames, without requiring a full LLC protocol layer. */ if ( eth_is_llc_packet ( ethhdr ) ) { - llc_proto = ( ðhdr->h_protocol + 1 ); + llc_proto = iobuf->data; *net_proto = *llc_proto; } |