[PATCH 2/7] drm: plane: Fix size of formats memcpy()

ville.syrjala at linux.intel.com ville.syrjala at linux.intel.com
Fri Nov 11 08:04:02 PST 2011


From: Ville Syrjälä <ville.syrjala at linux.intel.com>

Signed-off-by: Ville Syrjälä <ville.syrjala at linux.intel.com>
---
 drivers/gpu/drm/drm_crtc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c
index 7058ed3..d3b884e 100644
--- a/drivers/gpu/drm/drm_crtc.c
+++ b/drivers/gpu/drm/drm_crtc.c
@@ -563,7 +563,7 @@ int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
 		return -ENOMEM;
 	}
 
-	memcpy(plane->format_types, formats, format_count);
+	memcpy(plane->format_types, formats, sizeof(uint32_t) * format_count);
 	plane->format_count = format_count;
 	plane->possible_crtcs = possible_crtcs;
 
-- 
1.7.3.4



More information about the dri-devel mailing list