OSDN Git Service

drm/tilcdc: fix leak & null ref in panel_connector_get_modes
authorTomi Valkeinen <tomi.valkeinen@ti.com>
Wed, 29 Apr 2020 10:42:32 +0000 (13:42 +0300)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Tue, 19 May 2020 06:56:40 +0000 (09:56 +0300)
If videomode_from_timings() returns true, the mode allocated with
drm_mode_create will be leaked.

Also, the return value of drm_mode_create() is never checked, and thus
could cause NULL deref.

Fix these two issues.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200429104234.18910-1-tomi.valkeinen@ti.com
Reviewed-by: Jyri Sarha <jsarha@ti.com>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
drivers/gpu/drm/tilcdc/tilcdc_panel.c

index b207b2f..1c9fa8c 100644 (file)
@@ -139,12 +139,16 @@ static int panel_connector_get_modes(struct drm_connector *connector)
        int i;
 
        for (i = 0; i < timings->num_timings; i++) {
-               struct drm_display_mode *mode = drm_mode_create(dev);
+               struct drm_display_mode *mode;
                struct videomode vm;
 
                if (videomode_from_timings(timings, &vm, i))
                        break;
 
+               mode = drm_mode_create(dev);
+               if (!mode)
+                       break;
+
                drm_display_mode_from_videomode(&vm, mode);
 
                mode->type = DRM_MODE_TYPE_DRIVER;