Browse Source

drm/ast: fix EDID memory leak

The EDID returned by drm_get_edid() was never freed.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Jani Nikula 13 years ago
parent
commit
993dcb05e4
1 changed files with 1 additions and 0 deletions
  1. 1 0
      drivers/gpu/drm/ast/ast_mode.c

+ 1 - 0
drivers/gpu/drm/ast/ast_mode.c

@@ -737,6 +737,7 @@ static int ast_get_modes(struct drm_connector *connector)
 	if (edid) {
 		drm_mode_connector_update_edid_property(&ast_connector->base, edid);
 		ret = drm_add_edid_modes(connector, edid);
+		kfree(edid);
 		return ret;
 	} else
 		drm_mode_connector_update_edid_property(&ast_connector->base, NULL);