build: constify memchr()/strchr()/etc result variables (cont.)

Assisted-by: Rudi Heitbaum
Fixes #20420
Follow-up to 7dc60bdb90 #20425
Follow-up to 0e2507a3c6 #20421

Closes #20428
This commit is contained in:
Viktor Szakats 2026-01-25 13:38:09 +01:00
parent 6974bd7cc8
commit 4e5908306a
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
7 changed files with 9 additions and 9 deletions

View file

@ -734,10 +734,10 @@ void ourWriteOut(struct OperationConfig *config, struct per_transfer *per,
}
else {
/* this is meant as a variable to output */
char *end;
const char *end;
size_t vlen;
if('{' == ptr[1]) {
struct writeoutvar *wv = NULL;
const struct writeoutvar *wv = NULL;
struct writeoutvar find = { 0 };
end = strchr(ptr, '}');
ptr += 2; /* pass the % and the { */