Skip to content

Commit

Permalink
LEDS: memory leak in blinkm_led_common_set()
Browse files Browse the repository at this point in the history
This can return without freeing the bl_work struct.  Also there was no
check for allocation failure.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Jan-Simon Möller <jansimon.moeller@gmx.de>
Signed-off-by: Bryan Wu <bryan.wu@canonical.com>
  • Loading branch information
Dan Carpenter authored and Bryan Wu committed Jul 27, 2012
1 parent eb80411 commit 4d8729a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions drivers/leds/leds-blinkm.c
Original file line number Diff line number Diff line change
Expand Up @@ -468,8 +468,7 @@ static int blinkm_led_common_set(struct led_classdev *led_cdev,
/* led_brightness is 0, 127 or 255 - we just use it here as-is */
struct blinkm_led *led = cdev_to_blmled(led_cdev);
struct blinkm_data *data = i2c_get_clientdata(led->i2c_client);
struct blinkm_work *bl_work = kzalloc(sizeof(struct blinkm_work),
GFP_ATOMIC);
struct blinkm_work *bl_work;

switch (color) {
case RED:
Expand Down Expand Up @@ -511,6 +510,10 @@ static int blinkm_led_common_set(struct led_classdev *led_cdev,
return -EINVAL;
}

bl_work = kzalloc(sizeof(*bl_work), GFP_ATOMIC);
if (!bl_work)
return -ENOMEM;

atomic_inc(&led->active);
dev_dbg(&led->i2c_client->dev,
"#TO_SCHED# next_red = %d, next_green = %d,"
Expand Down

0 comments on commit 4d8729a

Please sign in to comment.