Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
6lowpan: Off by one handling ->nexthdr
NEXTHDR_MAX is 255. What happens here is that we take a u8 value "hdr->nexthdr" from the network and then look it up in lowpan_nexthdr_nhcs[]. The problem is that if hdr->nexthdr is 0xff then we read one element beyond the end of the array so the array needs to be one element larger. Fixes: 92aa7c6 ("6lowpan: add generic nhc layer interface") Signed-off-by: Dan Carpenter <[email protected]> Acked-by: Jukka Rissanen <[email protected]> Acked-by: Alexander Aring <[email protected]> Signed-off-by: Marcel Holtmann <[email protected]>
- Loading branch information