diff options
author | Dave Airlie <airlied@gmail.com> | 2012-11-30 20:54:38 +1000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-11-30 07:25:54 -0800 |
commit | e9ea96d6a88f197928c82b008953f1810de6f792 (patch) | |
tree | 41669557c20b26379bbcd838648bd7e41817135b /randr | |
parent | 1712a45422a63f11b2146541279616fcfda09ec6 (diff) |
randr: call RRProviderInit in the proper place.
No idea where this got lost across development cycles, but its
definitely missing.
Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=57448
Signed-off-by: Dave Airlie <airlied@redhat.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'randr')
-rw-r--r-- | randr/randr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/randr/randr.c b/randr/randr.c index da48c3f06..f0decfc6c 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)) |