From 506bbb8341c052499057834a669b82787454b426 Mon Sep 17 00:00:00 2001 From: Zhenyu Wang Date: Mon, 16 Feb 2009 06:09:49 +0000 Subject: Safely init SDVO found variable Found by Michael Fu for my last SDVO detect fix. --- src/i830_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: b/src/i830_driver.c =================================================================== --- a/src/i830_driver.c 2009-03-09 15:37:20.000000000 -0600 +++ b/src/i830_driver.c 2009-03-09 15:38:13.000000000 -0600 @@ -926,7 +926,7 @@ I830SetupOutputs(ScrnInfoPtr pScrn) i830_lvds_init(pScrn); if (IS_I9XX(pI830)) { - Bool found; + Bool found = FALSE; if (INREG(SDVOB) & SDVO_DETECTED) { found = i830_sdvo_init(pScrn, SDVOB);