Chore: replace many sprintf with snprintf. Only one was doubtful - 5 x %f into a small string?

This commit is contained in:
btsimonh
2022-10-25 06:19:23 +01:00
parent bbac340e79
commit 6516205d37
16 changed files with 53 additions and 53 deletions

View File

@ -698,7 +698,7 @@ static int http_rest_post_logconfig(http_request_t* request) {
else {
ADDLOG_ERROR(LOG_FEATURE_API, "Unexpected key: %.*s", t[i].end - t[i].start,
json_str + t[i].start);
sprintf(tmp, "Unexpected key: %.*s\n", t[i].end - t[i].start,
snprintf(tmp, sizeof(tmp), "Unexpected key: %.*s\n", t[i].end - t[i].start,
json_str + t[i].start);
poststr(request, tmp);
}