OSDN Git Service

media: winbond-cir: buffer overrun during transmit
authorSean Young <sean@mess.org>
Fri, 4 Aug 2017 10:33:41 +0000 (06:33 -0400)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Sun, 20 Aug 2017 13:52:04 +0000 (09:52 -0400)
We're reading beyond the buffer before checking its length.

BUG: KASAN: slab-out-of-bounds in wbcir_irq_tx

Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/rc/winbond-cir.c

index ea7be6d..a18eb23 100644 (file)
@@ -429,7 +429,7 @@ wbcir_irq_tx(struct wbcir_data *data)
                bytes[used] = byte;
        }
 
-       while (data->txbuf[data->txoff] == 0 && data->txoff != data->txlen)
+       while (data->txoff != data->txlen && data->txbuf[data->txoff] == 0)
                data->txoff++;
 
        if (used == 0) {