aboutsummaryrefslogtreecommitdiff
path: root/hotkey.c
diff options
context:
space:
mode:
Diffstat (limited to 'hotkey.c')
-rw-r--r--hotkey.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/hotkey.c b/hotkey.c
index d00062d..e9ee615 100644
--- a/hotkey.c
+++ b/hotkey.c
@@ -22,8 +22,9 @@ struct Key * parse_key(char *shortcut, char *command) {
fprintf(stderr, "could not allocate keys\n");
exit(EXIT_FAILURE);
}
- key->command = command;
- key->mod = 0;
+ key->command = strndup(command, strlen(command) + 2);
+ key->command[strlen(command)] = ' ';
+ key->command[strlen(command) + 1] = '&';
size_t i = 0;
@@ -113,6 +114,8 @@ struct Key **load_hotkeys(FILE *fh, size_t *key_len) {
res = sscanf(line, "%ms %m[^\n]+", &shortcut, &command);
if(res == 2) {
key = parse_key(shortcut, command);
+ if(key == NULL)
+ error = 1;
}
else {
error = 1;