]> git.baikalelectronics.ru Git - kernel.git/commit
drivers/hid/hid-multitouch.c: fix a possible null pointer access.
authorPan Zhang <zhangpan26@huawei.com>
Thu, 19 Dec 2019 02:45:30 +0000 (10:45 +0800)
committerBenjamin Tissoires <benjamin.tissoires@redhat.com>
Thu, 19 Dec 2019 09:22:25 +0000 (10:22 +0100)
commit5ab5b52e1798ee0b5d64befa69c99c3a83bf5fd2
tree5ccb6b8afec1bd35067015e426700484eb1d7d9f
parent516f55e886e36a2e2f27ea8363b76cc31f653f3f
drivers/hid/hid-multitouch.c: fix a possible null pointer access.

1002     if ((quirks & MT_QUIRK_IGNORE_DUPLICATES) && mt) {
1003         struct input_mt_slot *i_slot = &mt->slots[slotnum];
1004
1005         if (input_mt_is_active(i_slot) &&
1006             input_mt_is_used(mt, i_slot))
1007             return -EAGAIN;
1008     }

We previously assumed 'mt' could be null (see line 1002).

The following situation is similar, so add a judgement.

Signed-off-by: Pan Zhang <zhangpan26@huawei.com>
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
drivers/hid/hid-multitouch.c