summaryrefslogtreecommitdiff
path: root/dix
diff options
context:
space:
mode:
authorZephaniah E. Hull <warp@agamemnon.b5>2007-06-04 06:39:02 -0400
committerZephaniah E. Hull <warp@agamemnon.b5>2007-06-04 06:39:02 -0400
commita4f3473c88370b8411e016ebab619cffd33e58f9 (patch)
tree6d1f64bb9e2f319bc345b5a6b4240566d29f08a9 /dix
parent0cbc3a4da2ddb6e4f30f60d2bc7f405d31aa554a (diff)
Fully init the AbsoluteClassRec in InitAbsoluteClassDeviceStruct.
(Specificly, we were missing the screen field.)
Diffstat (limited to 'dix')
-rw-r--r--dix/devices.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/dix/devices.c b/dix/devices.c
index da6e59064..6c694547b 100644
--- a/dix/devices.c
+++ b/dix/devices.c
@@ -901,6 +901,7 @@ InitAbsoluteClassDeviceStruct(DeviceIntPtr dev)
abs->width = -1;
abs->height = -1;
abs->following = 0;
+ abs->screen = 0;
dev->absolute = abs;