summaryrefslogtreecommitdiffstats
path: root/web/api/web_api.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-09-04 08:57:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-09-04 08:57:49 +0000
commit5f647647b2683875bdbed970d955a9e5123284bd (patch)
tree66dcf1d9f7a60cd19dd9ac410e27d5f6ead521d3 /web/api/web_api.c
parentReleasing debian version 1.42.1-1. (diff)
downloadnetdata-5f647647b2683875bdbed970d955a9e5123284bd.tar.xz
netdata-5f647647b2683875bdbed970d955a9e5123284bd.zip
Merging upstream version 1.42.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'web/api/web_api.c')
-rw-r--r--web/api/web_api.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/web/api/web_api.c b/web/api/web_api.c
index 96ab00390..be6d898b8 100644
--- a/web/api/web_api.c
+++ b/web/api/web_api.c
@@ -73,6 +73,9 @@ int web_client_api_request_vX(RRDHOST *host, struct web_client *w, char *url_pat
return HTTP_RESP_BAD_REQUEST;
}
+ if (api_command != url_path_endpoint)
+ freez(api_command);
+
short int code = web_client_check_acl_and_bearer(w, api_commands[i].acl);
if(code != HTTP_RESP_OK) {
if(code == HTTP_RESP_FORBIDDEN)