diff options
Diffstat (limited to 'xkb')
-rw-r--r-- | xkb/xkb.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -6704,6 +6704,10 @@ XkbExtensionInit(void) { ExtensionEntry *extEntry; + RT_XKBCLIENT = CreateNewResourceType(XkbClientGone); + if (!RT_XKBCLIENT) + return; + if ((extEntry = AddExtension(XkbName, XkbNumberEvents, XkbNumberErrors, ProcXkbDispatch, SProcXkbDispatch, NULL, StandardMinorOpcode))) { @@ -6711,7 +6715,6 @@ XkbExtensionInit(void) XkbEventBase = (unsigned char)extEntry->eventBase; XkbErrorBase = (unsigned char)extEntry->errorBase; XkbKeyboardErrorCode = XkbErrorBase+XkbKeyboard; - RT_XKBCLIENT = CreateNewResourceType(XkbClientGone); } return; } |