mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-03-16 03:16:05 -04:00
Fix another small memory leak.
This commit is contained in:
parent
6b49f8f26b
commit
4f2d56a55f
@ -69,8 +69,14 @@ bool AutoTypePlatformX11::isAvailable()
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!m_xkb && !getKeyboard()) {
|
||||
return false;
|
||||
if (!m_xkb) {
|
||||
XkbDescPtr kbd = getKeyboard();
|
||||
|
||||
if (!kbd) {
|
||||
return false;
|
||||
}
|
||||
|
||||
XkbFreeKeyboard(kbd, XkbAllComponentsMask, True);
|
||||
}
|
||||
|
||||
return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user