mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 10:14:52 +00:00
Xi: don't allow OpenDevice on any MD.
This restores the original behaviour of XI 1. Any slave device may be opened, but none of the MDs. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
@@ -113,14 +113,8 @@ ProcXOpenDevice(ClientPtr client)
|
||||
} else if (status != Success)
|
||||
return status;
|
||||
|
||||
/* Don't let XI 1.x clients open devices other than floating SDs. */
|
||||
pXIClient = dixLookupPrivate(&client->devPrivates, XIClientPrivateKey);
|
||||
if (pXIClient->major_version < XI_2_Major)
|
||||
{
|
||||
if (dev->isMaster || (!dev->isMaster && dev->u.master))
|
||||
if (dev->isMaster)
|
||||
return BadDevice;
|
||||
}
|
||||
|
||||
|
||||
OpenInputDevice(dev, client, &status);
|
||||
if (status != Success)
|
||||
|
||||
Reference in New Issue
Block a user