diff options
author | Zephaniah E. Hull <warp@agamemnon.b5> | 2007-06-04 06:39:02 -0400 |
---|---|---|
committer | Zephaniah E. Hull <warp@agamemnon.b5> | 2007-06-04 06:39:02 -0400 |
commit | a4f3473c88370b8411e016ebab619cffd33e58f9 (patch) | |
tree | 6d1f64bb9e2f319bc345b5a6b4240566d29f08a9 /dix | |
parent | 0cbc3a4da2ddb6e4f30f60d2bc7f405d31aa554a (diff) |
Fully init the AbsoluteClassRec in InitAbsoluteClassDeviceStruct.
(Specificly, we were missing the screen field.)
Diffstat (limited to 'dix')
-rw-r--r-- | dix/devices.c | 1 |
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; |