mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
dix: don't check VCK and VCP separately when looking for device ids.
Both are part of the device list again, so we cover them there.
This commit is contained in:
@@ -107,10 +107,6 @@ AddInputDevice(DeviceProc deviceProc, Bool autoStart)
|
||||
|
||||
/* Find next available id */
|
||||
memset(devind, 0, sizeof(char)*MAX_DEVICES);
|
||||
if (inputInfo.keyboard)
|
||||
devind[inputInfo.keyboard->id]++;
|
||||
if (inputInfo.pointer)
|
||||
devind[inputInfo.pointer->id]++;
|
||||
for (devtmp = inputInfo.devices; devtmp; devtmp = devtmp->next)
|
||||
devind[devtmp->id]++;
|
||||
for (devtmp = inputInfo.off_devices; devtmp; devtmp = devtmp->next)
|
||||
|
||||
Reference in New Issue
Block a user