Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 50010c20 authored by Dan Carpenter's avatar Dan Carpenter Committed by David S. Miller
Browse files

irda: precedence bug in irlmp_seq_hb_idx()



This is decrementing the pointer, instead of the value stored in the
pointer.  KASan detects it as an out of bounds reference.

Reported-by: default avatar"Berry Cheng 程君(成淼)" <chengmiao.cj@alibaba-inc.com>
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ca88ea12
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1839,7 +1839,7 @@ static void *irlmp_seq_hb_idx(struct irlmp_iter_state *iter, loff_t *off)
	for (element = hashbin_get_first(iter->hashbin);
	     element != NULL;
	     element = hashbin_get_next(iter->hashbin)) {
		if (!off || *off-- == 0) {
		if (!off || (*off)-- == 0) {
			/* NB: hashbin left locked */
			return element;
		}