From: Ricardo Ribalda Delgado Date: Fri, 31 Jul 2015 11:36:21 +0000 (+0200) Subject: leds/led-class: Add missing put_device() X-Git-Tag: v4.1.11~154 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=438437983e0cefa439e9b161f74b805d0416eec0;p=users%2Fjedix%2Flinux-maple.git leds/led-class: Add missing put_device() commit e5b5a61fcb3743f1dacf9e20d28f48423cecf0c1 upstream. Devices found by class_find_device must be freed with put_device(). Otherwise the reference count will not work properly. Fixes: a96aa64cb572 ("leds/led-class: Handle LEDs with the same name") Reported-by: Alan Tull Signed-off-by: Ricardo Ribalda Delgado Signed-off-by: Jacek Anaszewski Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/leds/led-class.c b/drivers/leds/led-class.c index 7fb2a19ac649..557f8a53a062 100644 --- a/drivers/leds/led-class.c +++ b/drivers/leds/led-class.c @@ -223,12 +223,15 @@ static int led_classdev_next_name(const char *init_name, char *name, { unsigned int i = 0; int ret = 0; + struct device *dev; strlcpy(name, init_name, len); - while (class_find_device(leds_class, NULL, name, match_name) && - (ret < len)) + while ((ret < len) && + (dev = class_find_device(leds_class, NULL, name, match_name))) { + put_device(dev); ret = snprintf(name, len, "%s_%u", init_name, ++i); + } if (ret >= len) return -ENOMEM;