mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
xkb: don't update LEDs if they don't exist. (Bug #13961)
In some weird cases we call this function when there is no SrvLedInfo on the device. And it turns out null-pointer dereferences are bad. X.Org Bug 13961 <http://bugs.freedesktop.org/show_bug.cgi?id=13961>
This commit is contained in:
@@ -63,6 +63,9 @@ XkbSrvLedInfoPtr sli;
|
||||
|
||||
sli= XkbFindSrvLedInfo(dev,XkbDfltXIClass,XkbDfltXIId,0);
|
||||
|
||||
if (!sli)
|
||||
return update;
|
||||
|
||||
if (state_changes&(XkbModifierStateMask|XkbGroupStateMask))
|
||||
update|= sli->usesEffective;
|
||||
if (state_changes&(XkbModifierBaseMask|XkbGroupBaseMask))
|
||||
|
||||
Reference in New Issue
Block a user