From: Dan Carpenter Date: Mon, 19 Oct 2015 10:16:49 +0000 (+0300) Subject: irda: precedence bug in irlmp_seq_hb_idx() X-Git-Tag: v4.3~11^2~49 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=50010c20597d14667eff0fdb628309986f195230;p=users%2Fwilly%2Flinux.git 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: "Berry Cheng 程君(成淼)" Signed-off-by: Dan Carpenter Signed-off-by: David S. Miller --- diff --git a/net/irda/irlmp.c b/net/irda/irlmp.c index a26c401ef4a4..43964594aa12 100644 --- a/net/irda/irlmp.c +++ b/net/irda/irlmp.c @@ -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; }