OSDN Git Service

leds: lp5523: fix a missing check of return value of lp55xx_read
authorKangjie Lu <kjlu@umn.edu>
Wed, 26 Dec 2018 04:18:23 +0000 (22:18 -0600)
committerJacek Anaszewski <jacek.anaszewski@gmail.com>
Thu, 17 Jan 2019 21:27:39 +0000 (22:27 +0100)
When lp55xx_read() fails, "status" is an uninitialized variable and thus
may contain random value; using it leads to undefined behaviors.

The fix inserts a check for the return value of lp55xx_read: if it
fails, returns with its error code.

Signed-off-by: Kangjie Lu <kjlu@umn.edu>
Signed-off-by: Jacek Anaszewski <jacek.anaszewski@gmail.com>
drivers/leds/leds-lp5523.c

index a2e74fe..fd64df5 100644 (file)
@@ -318,7 +318,9 @@ static int lp5523_init_program_engine(struct lp55xx_chip *chip)
 
        /* Let the programs run for couple of ms and check the engine status */
        usleep_range(3000, 6000);
-       lp55xx_read(chip, LP5523_REG_STATUS, &status);
+       ret = lp55xx_read(chip, LP5523_REG_STATUS, &status);
+       if (ret)
+               return ret;
        status &= LP5523_ENG_STATUS_MASK;
 
        if (status != LP5523_ENG_STATUS_MASK) {