Fix json parsing in api.c
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
diff --git a/api.c b/api.c
index bbc8e17..c82b0d2 100644
--- a/api.c
+++ b/api.c
@@ -4387,7 +4387,7 @@ void api(int api_thr_id)
bool addrok;
char group;
json_error_t json_err;
- json_t *json_config;
+ json_t *json_config = NULL;
json_t *json_val;
bool isjson;
bool did;
@@ -4562,21 +4562,18 @@ void api(int api_thr_id)
message(io_data, MSG_INVJSON, 0, NULL, isjson);
send_result(io_data, c, isjson);
did = true;
- }
- else {
+ } else {
json_val = json_object_get(json_config, JSON_COMMAND);
if (json_val == NULL) {
message(io_data, MSG_MISCMD, 0, NULL, isjson);
send_result(io_data, c, isjson);
did = true;
- }
- else {
+ } else {
if (!json_is_string(json_val)) {
message(io_data, MSG_INVCMD, 0, NULL, isjson);
send_result(io_data, c, isjson);
did = true;
- }
- else {
+ } else {
cmd = (char *)json_string_value(json_val);
json_val = json_object_get(json_config, JSON_PARAMETER);
if (json_is_string(json_val))
@@ -4590,11 +4587,10 @@ void api(int api_thr_id)
}
}
}
- json_decref(json_config);
}
}
- if (!did)
+ if (!did) {
for (i = 0; cmds[i].name != NULL; i++) {
if (strcmp(cmd, cmds[i].name) == 0) {
sprintf(cmdbuf, "|%s|", cmd);
@@ -4610,11 +4606,14 @@ void api(int api_thr_id)
break;
}
}
+ }
if (!did) {
message(io_data, MSG_INVCMD, 0, NULL, isjson);
send_result(io_data, c, isjson);
}
+ if (json_is_object(json_config))
+ json_decref(json_config);
}
}
CLOSESOCKET(c);