mirror of
https://github.com/curl/curl.git
synced 2026-07-22 18:37:19 +03:00
build: constify memchr()/strchr()/etc result variables (cont.)
Assisted-by: Rudi Heitbaum Fixes #20420 Follow-up to7dc60bdb90#20425 Follow-up to0e2507a3c6#20421 Closes #20428
This commit is contained in:
parent
6974bd7cc8
commit
4e5908306a
7 changed files with 9 additions and 9 deletions
|
|
@ -136,7 +136,7 @@ static CURLcode sendf(struct Curl_easy *data, const char *fmt, ...)
|
|||
|
||||
static CURLcode dict_do(struct Curl_easy *data, bool *done)
|
||||
{
|
||||
const char *word;
|
||||
char *word;
|
||||
char *eword = NULL;
|
||||
char *ppath;
|
||||
char *database = NULL;
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ CURLcode Curl_output_digest(struct Curl_easy *data,
|
|||
{
|
||||
CURLcode result;
|
||||
unsigned char *path = NULL;
|
||||
char *tmp = NULL;
|
||||
const char *tmp = NULL;
|
||||
char *response;
|
||||
size_t len;
|
||||
bool have_chlg;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue