diff options
author | emersion <contact@emersion.fr> | 2019-01-29 19:56:43 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2019-01-29 19:56:43 +0100 |
commit | 7309d8c9ac2767c75f52aba0abba22cbf5384966 (patch) | |
tree | 3ef1de8095070928d707383a5c7b13f7eb8a89e1 /rootston | |
parent | c6b4153748f8e53363cda87edfea43a432f4a255 (diff) |
Fix two issues found with Clang's static analyzer
Diffstat (limited to 'rootston')
-rw-r--r-- | rootston/config.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/rootston/config.c b/rootston/config.c index 198aaba6..d9376091 100644 --- a/rootston/config.c +++ b/rootston/config.c @@ -201,9 +201,10 @@ void add_binding_config(struct wl_list *bindings, const char* combination, } } -void add_switch_config(struct wl_list *switches, const char *switch_name, const char *action, - const char* command) { - struct roots_switch_config *sc = calloc(1, sizeof(struct roots_switch_config)); +void add_switch_config(struct wl_list *switches, const char *switch_name, + const char *action, const char *command) { + struct roots_switch_config *sc = + calloc(1, sizeof(struct roots_switch_config)); if (strcmp(switch_name, "tablet") == 0) { sc->switch_type = WLR_SWITCH_TYPE_TABLET_MODE; @@ -213,6 +214,7 @@ void add_switch_config(struct wl_list *switches, const char *switch_name, const sc->switch_type = -1; sc->name = strdup(switch_name); } + if (strcmp(action, "on") == 0) { sc->switch_state = WLR_SWITCH_STATE_ON; } else if (strcmp(action, "off") == 0) { @@ -220,10 +222,12 @@ void add_switch_config(struct wl_list *switches, const char *switch_name, const } else if (strcmp(action, "toggle") == 0) { sc->switch_state = WLR_SWITCH_STATE_TOGGLE; } else { - wlr_log(WLR_ERROR, "Invalid switch action %s/n for switch %s:%s", - action, switch_name, action); + wlr_log(WLR_ERROR, "Invalid switch action %s for switch %s:%s", + action, switch_name, action); + free(sc); return; } + sc->command = strdup(command); wl_list_insert(switches, &sc->link); } |