提交 8ea371fb 编写于 作者: F Florin Malita 提交者: Dmitry Torokhov

Input: atkbd - fix overrun in atkbd_set_repeat_rate()

This was introduced in commit 3d0f0fa0:
bounds checking is performed against period[32] while indexing delay[4].

Spotted by Coverity, CID 1376.
Signed-off-by: NFlorin Malita <fmalita@gmail.com>
Signed-off-by: NDmitry Torokhov <dtor@mail.ru>
上级 2ffc1cca
......@@ -498,7 +498,7 @@ static int atkbd_set_repeat_rate(struct atkbd *atkbd)
i++;
dev->rep[REP_PERIOD] = period[i];
while (j < ARRAY_SIZE(period) - 1 && delay[j] < dev->rep[REP_DELAY])
while (j < ARRAY_SIZE(delay) - 1 && delay[j] < dev->rep[REP_DELAY])
j++;
dev->rep[REP_DELAY] = delay[j];
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册