aboutsummaryrefslogtreecommitdiff
path: root/src/ping903.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ping903.c')
-rw-r--r--src/ping903.c18
1 files changed, 7 insertions, 11 deletions
diff --git a/src/ping903.c b/src/ping903.c
index 06597bb..df1196b 100644
--- a/src/ping903.c
+++ b/src/ping903.c
@@ -295,4 +295,3 @@ http_response_detail(struct MHD_Connection *conn,
{
- struct json_value *jv, *errobj = json_new_object();
- int rc;
+ struct json_value *jv = NULL, *errobj = json_new_object();
@@ -300,16 +299,13 @@ http_response_detail(struct MHD_Connection *conn,
goto err;
- if ((jv = json_new_string(message)) == NULL)
- goto err;
- if (json_object_set(errobj, "message", jv))
+ if ((jv = json_new_string(message)) == NULL
+ || json_object_set(errobj, "message", jv))
goto err;
if (index) {
- if ((jv = json_new_number(index)) == NULL)
- goto err;
- if (json_object_set(errobj, "index", jv))
+ if ((jv = json_new_number(index)) == NULL
+ || json_object_set(errobj, "index", jv))
goto err;
}
- rc = httpd_json_response(conn, url, method, status, errobj);
- json_value_free(errobj);
- return rc;
+ return httpd_json_response(conn, url, method, status, errobj);
err:
+ json_value_free(jv);
json_value_free(errobj);

Return to:

Send suggestions and report system problems to the System administrator.