|
@ -216,11 +216,15 @@ char* get_keylayoutname(int mode) { |
|
|
|
|
|
|
|
|
if (XkbGetNames(display, XkbGroupNamesMask, keyboard) != Success ) { |
|
|
if (XkbGetNames(display, XkbGroupNamesMask, keyboard) != Success ) { |
|
|
DEBUG("Error obtaining symbolic names"); |
|
|
DEBUG("Error obtaining symbolic names"); |
|
|
|
|
|
XCloseDisplay(display); |
|
|
|
|
|
XkbFreeClientMap(keyboard, 0, true); |
|
|
return NULL; |
|
|
return NULL; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if(XkbGetState(display, XkbUseCoreKbd, &state) != Success) { |
|
|
if(XkbGetState(display, XkbUseCoreKbd, &state) != Success) { |
|
|
DEBUG("Error getting keyboard state"); |
|
|
DEBUG("Error getting keyboard state"); |
|
|
|
|
|
XCloseDisplay(display); |
|
|
|
|
|
XkbFreeClientMap(keyboard, 0, true); |
|
|
return NULL; |
|
|
return NULL; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -258,10 +262,12 @@ char* get_keylayoutname(int mode) { |
|
|
default: |
|
|
default: |
|
|
break; |
|
|
break; |
|
|
} |
|
|
} |
|
|
|
|
|
// note: this is called in option parsing, so this debug() may not trigger unless --debug is the first option
|
|
|
DEBUG("answer after mode parsing: [%s]\n", answer); |
|
|
DEBUG("answer after mode parsing: [%s]\n", answer); |
|
|
// Free symbolic names structures
|
|
|
// Free symbolic names structures
|
|
|
XkbFreeNames(keyboard, XkbGroupNamesMask, True); |
|
|
XkbFreeClientMap(keyboard, 0, true); |
|
|
// note: this is called in option parsing, so this debug() may not trigger unless --debug is the first option
|
|
|
XCloseDisplay(display); |
|
|
|
|
|
display = NULL; |
|
|
return answer; |
|
|
return answer; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|