Twas brillig at 23:22:09 12.10.2010 UTC+04 when [email protected] did gyre and gimble:
MG> /* Depth-first search and mark all CRTCs reachable from cur */
MG> static void
MG> dfs (rrScrPrivPtr pScrPriv, int *reachable, int cur)
MG> {
MG> int i;
MG> reachable[cur] = TRUE;
MG> for (i = 0; i < pScrPriv->numCrtcs; ++i) {
MG> if (reachable[i])
MG> continue;
Should read as
if (reachable[i] || !pScrPriv->crtcs[i]->mode)
continue;
--
http://fossarchy.blogspot.com/
pgpRffKXjfmPw.pgp
Description: PGP signature
_______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
