From dc9127ec1e149524d67dd3e7e67e2487fc11bea8 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Fri, 30 Nov 2012 20:33:30 +1000 Subject: [PATCH] randr: call RRProviderInit in the proper place. No idea where this got lost across development cycles, but its definitely missing. Should fix: https://bugs.freedesktop.org/show_bug.cgi?id=57448 Signed-off-by: Dave Airlie --- randr/randr.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/randr/randr.c b/randr/randr.c index da48c3f..f0decfc 100644 --- a/randr/randr.c +++ b/randr/randr.c @@ -264,6 +264,8 @@ RRInit(void) return FALSE; if (!RROutputInit()) return FALSE; + if (!RRProviderInit()) + return FALSE; RRGeneration = serverGeneration; } if (!dixRegisterPrivateKey(&rrPrivKeyRec, PRIVATE_SCREEN, 0)) -- 1.7.11.7