summaryrefslogtreecommitdiffstats
path: root/tdekbdledsync
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2017-03-25 17:33:22 +0100
committerSlávek Banko <slavek.banko@axis.cz>2017-03-25 17:33:22 +0100
commitba2fe631679775cc5e25fe0e7b9769e7bc0e0f68 (patch)
tree5fd8e757de0acdf3a5c7b01f2e342b7f11886f48 /tdekbdledsync
parentec82c436506fd65e1acb3ebdfe8661b9682f4f8f (diff)
downloadtdebase-ba2fe631679775cc5e25fe0e7b9769e7bc0e0f68.tar.gz
tdebase-ba2fe631679775cc5e25fe0e7b9769e7bc0e0f68.zip
Fix memory leak after use XGetAtomName
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'tdekbdledsync')
-rw-r--r--tdekbdledsync/main.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/tdekbdledsync/main.cpp b/tdekbdledsync/main.cpp
index 42bb6c9df..0f4075694 100644
--- a/tdekbdledsync/main.cpp
+++ b/tdekbdledsync/main.cpp
@@ -193,11 +193,16 @@ unsigned int xkb_mask_modifier(XkbDescPtr xkb, const char *name) {
}
for( i = 0; i < XkbNumVirtualMods; i++ ) {
char* modStr = XGetAtomName( xkb->dpy, xkb->names->vmods[i] );
- if( modStr != NULL && strcmp(name, modStr) == 0 ) {
+ if( modStr == NULL ) {
+ continue;
+ }
+ if( strcmp(name, modStr) == 0 ) {
unsigned int mask;
XkbVirtualModsToReal( xkb, 1 << i, &mask );
+ XFree(modStr);
return mask;
}
+ XFree(modStr);
}
return 0;
}