Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 147794
Collapse All | Expand All

(-)file_not_specified_in_diff (-4 / +8 lines)
Line  Link Here
0
--
0
++ b/ChangeLog
1
-- a/ChangeLog
Lines 1-3 Link Here
1
2006-06-02  Adam Jackson  <ajax@freedesktop.org>
2
3
	* src/evdev_axes.c:
4
	Fix an obvious bogon to avoid crashing on absolute axis setup.
5
1
2006-05-15  Zephaniah E. Hull,,,  <warp@aehallh.com>
6
2006-05-15  Zephaniah E. Hull,,,  <warp@aehallh.com>
2
7
3
	* src/evdev.h:
8
	* src/evdev.h:
4
-- a/src/evdev_axes.c
9
++ b/src/evdev_axes.c
Lines 385-391 EvdevAxisAbsNew(InputInfoPtr pInfo) Link Here
385
	k = xf86SetIntOption(pInfo->options, "AbsoluteScreen", 0);
385
	k = xf86SetIntOption(pInfo->options, "AbsoluteScreen", 0);
386
    else
386
    else
387
	k = xf86SetIntOption(pInfo->options, "AbsoluteScreen", -1);
387
	k = xf86SetIntOption(pInfo->options, "AbsoluteScreen", -1);
388
    if (k < screenInfo.numScreens) {
388
    if (k < screenInfo.numScreens && k >= 0) {
389
	state->abs->screen = k;
389
	state->abs->screen = k;
390
	xf86Msg(X_CONFIG, "%s: AbsoluteScreen: %d.\n", pInfo->name, k);
390
	xf86Msg(X_CONFIG, "%s: AbsoluteScreen: %d.\n", pInfo->name, k);
391
    } else {
391
    } else {

Return to bug 147794