mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-16 22:38:04 +00:00
ebbeb55561
Also add script used to generate patches and SRC_URI Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
35 lines
1.3 KiB
Diff
35 lines
1.3 KiB
Diff
From 24ac9d40092ac989e425100ff65c7781cb786077 Mon Sep 17 00:00:00 2001
|
|
From: Ryan Mallon <rmallon@gmail.com>
|
|
Date: Sat, 28 Jan 2012 08:51:40 +1100
|
|
Subject: [PATCH 54/90] vmwgfx: Fix assignment in
|
|
vmw_framebuffer_create_handle
|
|
|
|
commit bf9c05d5b6d19b3e4c9fe21047694e94f48db89b upstream.
|
|
|
|
The assignment of handle in vmw_framebuffer_create_handle doesn't actually do anything useful and is incorrectly assigning an integer value to a pointer argument. It appears that this is a typo and should be dereferencing handle rather than assigning to it directly. This fixes a bug where an undefined handle value is potentially returned to user-space.
|
|
|
|
Signed-off-by: Ryan Mallon <rmallon@gmail.com>
|
|
Reviewed-by: Jakob Bornecrantz<jakob@vmware.com>
|
|
Signed-off-by: Dave Airlie <airlied@redhat.com>
|
|
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
|
---
|
|
drivers/gpu/drm/vmwgfx/vmwgfx_kms.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c b/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c
|
|
index f94b33a..7c88f1f 100644
|
|
--- a/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c
|
|
+++ b/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c
|
|
@@ -378,7 +378,7 @@ int vmw_framebuffer_create_handle(struct drm_framebuffer *fb,
|
|
unsigned int *handle)
|
|
{
|
|
if (handle)
|
|
- handle = 0;
|
|
+ *handle = 0;
|
|
|
|
return 0;
|
|
}
|
|
--
|
|
1.7.9.4
|
|
|