dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/edid: don't return stack garbage from supports_rb
@ 2012-06-19  9:33 Daniel Vetter
  2012-06-19 13:19 ` Adam Jackson
  2012-06-20 14:55 ` Adam Jackson
  0 siblings, 2 replies; 3+ messages in thread
From: Daniel Vetter @ 2012-06-19  9:33 UTC (permalink / raw)
  To: Dave Airlie; +Cc: Daniel Vetter, stable, DRI Development

We need to initialize this to false, because the is_rb callback only
ever sets it to true.

Noticed while reading through the code.

Cc: Adam Jackson <ajax@redhat.com>
Cc: stable@vger.kernel.org
Signed-Off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
---
 drivers/gpu/drm/drm_edid.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
index c3b5139..77a436f 100644
--- a/drivers/gpu/drm/drm_edid.c
+++ b/drivers/gpu/drm/drm_edid.c
@@ -603,7 +603,7 @@ static bool
 drm_monitor_supports_rb(struct edid *edid)
 {
 	if (edid->revision >= 4) {
-		bool ret;
+		bool ret = false;
 		drm_for_each_detailed_block((u8 *)edid, is_rb, &ret);
 		return ret;
 	}
-- 
1.7.10

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-06-20 14:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-19  9:33 [PATCH] drm/edid: don't return stack garbage from supports_rb Daniel Vetter
2012-06-19 13:19 ` Adam Jackson
2012-06-20 14:55 ` Adam Jackson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox