refactor: use sway_abort instead

This commit is contained in:
Sefa Eyeoglu 2021-10-21 22:47:35 +02:00 committed by Simon Ser
parent 96baef8ae9
commit b223f70250
1 changed files with 28 additions and 26 deletions

View File

@ -487,9 +487,11 @@ int main(int argc, char **argv) {
// pretty print the json
json_tokener *tok = json_tokener_new_ex(JSON_MAX_DEPTH);
if (tok == NULL) {
sway_log(SWAY_ERROR, "failed allocating json_tokener");
ret = 1;
} else {
if (quiet) {
exit(EXIT_FAILURE);
}
sway_abort("failed allocating json_tokener");
}
json_object *obj = json_tokener_parse_ex(tok, resp, -1);
enum json_tokener_error err = json_tokener_get_error(tok);
json_tokener_free(tok);
@ -513,7 +515,6 @@ int main(int argc, char **argv) {
}
json_object_put(obj);
}
}
free(command);
free(resp);
@ -531,9 +532,10 @@ int main(int argc, char **argv) {
json_tokener *tok = json_tokener_new_ex(JSON_MAX_DEPTH);
if (tok == NULL) {
sway_log(SWAY_ERROR, "failed allocating json_tokener");
ret = 1;
break;
if (quiet) {
exit(EXIT_FAILURE);
}
sway_abort("failed allocating json_tokener");
}
json_object *obj = json_tokener_parse_ex(tok, reply->payload, -1);
enum json_tokener_error err = json_tokener_get_error(tok);