From f1e6efa40be7bee1b29eb7ef7af5d0192edb888a Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Sat, 17 Aug 2019 17:30:09 +0100 Subject: [ethernet] Avoid false positive Coverity warning Signed-off-by: Michael Brown --- src/net/ethernet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/ethernet.c b/src/net/ethernet.c index 707bdf90..3fcdafe6 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; } -- cgit v1.2.3-55-g7522