Skip to content

Commit e078180

Browse files
Dan Carpenterpateldipen1984-nv
authored andcommitted
hte: tegra-194: Fix off by one in tegra_hte_map_to_line_id()
The "map_sz" is the number of elements in the "m" array so the > comparison needs to be changed to >= to prevent an out of bounds read. Fixes: 09574cc ("hte: Add Tegra194 HTE kernel provider") Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org> Acked-by: Dipen Patel <dipenp@nvidia.com> Signed-off-by: Dipen Patel <dipenp@nvidia.com>
1 parent 6680c83 commit e078180

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/hte/hte-tegra194.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ static int tegra_hte_map_to_line_id(u32 eid,
367367
{
368368

369369
if (m) {
370-
if (eid > map_sz)
370+
if (eid >= map_sz)
371371
return -EINVAL;
372372
if (m[eid].slice == NV_AON_SLICE_INVALID)
373373
return -EINVAL;

0 commit comments

Comments
 (0)