mirror of
https://github.com/curl/curl.git
synced 2025-03-31 16:00:35 +08:00
misc: fix -Walloc-size warnings
GCC 14 introduces a new -Walloc-size included in -Wextra which gives: ``` src/tool_operate.c: In function ‘add_per_transfer’: src/tool_operate.c:213:5: warning: allocation of insufficient size ‘1’ for type ‘struct per_transfer’ with size ‘480’ [-Walloc-size] 213 | p = calloc(sizeof(struct per_transfer), 1); | ^ src/var.c: In function ‘addvariable’: src/var.c:361:5: warning: allocation of insufficient size ‘1’ for type ‘struct var’ with size ‘32’ [-Walloc-size] 361 | p = calloc(sizeof(struct var), 1); | ^ ``` The calloc prototype is: ``` void *calloc(size_t nmemb, size_t size); ``` So, just swap the number of members and size arguments to match the prototype, as we're initialising 1 struct of size `sizeof(struct ...)`. GCC then sees we're not doing anything wrong. Closes #12292
This commit is contained in:
parent
d06643812c
commit
bc8509a748
@ -97,7 +97,7 @@ static struct altsvc *altsvc_createid(const char *srchost,
|
||||
unsigned int srcport,
|
||||
unsigned int dstport)
|
||||
{
|
||||
struct altsvc *as = calloc(sizeof(struct altsvc), 1);
|
||||
struct altsvc *as = calloc(1, sizeof(struct altsvc));
|
||||
size_t hlen;
|
||||
size_t dlen;
|
||||
if(!as)
|
||||
@ -299,7 +299,7 @@ static CURLcode altsvc_out(struct altsvc *as, FILE *fp)
|
||||
*/
|
||||
struct altsvcinfo *Curl_altsvc_init(void)
|
||||
{
|
||||
struct altsvcinfo *asi = calloc(sizeof(struct altsvcinfo), 1);
|
||||
struct altsvcinfo *asi = calloc(1, sizeof(struct altsvcinfo));
|
||||
if(!asi)
|
||||
return NULL;
|
||||
Curl_llist_init(&asi->list, NULL);
|
||||
|
@ -759,7 +759,7 @@ struct Curl_addrinfo *Curl_resolver_getaddrinfo(struct Curl_easy *data,
|
||||
size_t namelen = strlen(hostname);
|
||||
*waitp = 0; /* default to synchronous response */
|
||||
|
||||
res = calloc(sizeof(struct thread_data) + namelen, 1);
|
||||
res = calloc(1, sizeof(struct thread_data) + namelen);
|
||||
if(res) {
|
||||
strcpy(res->hostname, hostname);
|
||||
data->conn->resolve_async.hostname = res->hostname;
|
||||
|
@ -1547,7 +1547,7 @@ CURLcode Curl_cf_h2_proxy_insert_after(struct Curl_cfilter *cf,
|
||||
CURLcode result = CURLE_OUT_OF_MEMORY;
|
||||
|
||||
(void)data;
|
||||
ctx = calloc(sizeof(*ctx), 1);
|
||||
ctx = calloc(1, sizeof(*ctx));
|
||||
if(!ctx)
|
||||
goto out;
|
||||
|
||||
|
@ -208,7 +208,7 @@ static CURLcode cf_haproxy_create(struct Curl_cfilter **pcf,
|
||||
CURLcode result;
|
||||
|
||||
(void)data;
|
||||
ctx = calloc(sizeof(*ctx), 1);
|
||||
ctx = calloc(1, sizeof(*ctx));
|
||||
if(!ctx) {
|
||||
result = CURLE_OUT_OF_MEMORY;
|
||||
goto out;
|
||||
|
@ -455,7 +455,7 @@ static CURLcode cf_hc_create(struct Curl_cfilter **pcf,
|
||||
CURLcode result = CURLE_OK;
|
||||
|
||||
(void)data;
|
||||
ctx = calloc(sizeof(*ctx), 1);
|
||||
ctx = calloc(1, sizeof(*ctx));
|
||||
if(!ctx) {
|
||||
result = CURLE_OUT_OF_MEMORY;
|
||||
goto out;
|
||||
|
@ -1614,7 +1614,7 @@ CURLcode Curl_cf_tcp_create(struct Curl_cfilter **pcf,
|
||||
(void)data;
|
||||
(void)conn;
|
||||
DEBUGASSERT(transport == TRNSPRT_TCP);
|
||||
ctx = calloc(sizeof(*ctx), 1);
|
||||
ctx = calloc(1, sizeof(*ctx));
|
||||
if(!ctx) {
|
||||
result = CURLE_OUT_OF_MEMORY;
|
||||
goto out;
|
||||
@ -1744,7 +1744,7 @@ CURLcode Curl_cf_udp_create(struct Curl_cfilter **pcf,
|
||||
(void)data;
|
||||
(void)conn;
|
||||
DEBUGASSERT(transport == TRNSPRT_UDP || transport == TRNSPRT_QUIC);
|
||||
ctx = calloc(sizeof(*ctx), 1);
|
||||
ctx = calloc(1, sizeof(*ctx));
|
||||
if(!ctx) {
|
||||
result = CURLE_OUT_OF_MEMORY;
|
||||
goto out;
|
||||
@ -1795,7 +1795,7 @@ CURLcode Curl_cf_unix_create(struct Curl_cfilter **pcf,
|
||||
(void)data;
|
||||
(void)conn;
|
||||
DEBUGASSERT(transport == TRNSPRT_UNIX);
|
||||
ctx = calloc(sizeof(*ctx), 1);
|
||||
ctx = calloc(1, sizeof(*ctx));
|
||||
if(!ctx) {
|
||||
result = CURLE_OUT_OF_MEMORY;
|
||||
goto out;
|
||||
@ -1858,7 +1858,7 @@ CURLcode Curl_conn_tcp_listen_set(struct Curl_easy *data,
|
||||
Curl_conn_cf_discard_all(data, conn, sockindex);
|
||||
DEBUGASSERT(conn->sock[sockindex] == CURL_SOCKET_BAD);
|
||||
|
||||
ctx = calloc(sizeof(*ctx), 1);
|
||||
ctx = calloc(1, sizeof(*ctx));
|
||||
if(!ctx) {
|
||||
result = CURLE_OUT_OF_MEMORY;
|
||||
goto out;
|
||||
|
@ -215,7 +215,7 @@ CURLcode Curl_cf_create(struct Curl_cfilter **pcf,
|
||||
CURLcode result = CURLE_OUT_OF_MEMORY;
|
||||
|
||||
DEBUGASSERT(cft);
|
||||
cf = calloc(sizeof(*cf), 1);
|
||||
cf = calloc(1, sizeof(*cf));
|
||||
if(!cf)
|
||||
goto out;
|
||||
|
||||
|
@ -1079,7 +1079,7 @@ cf_happy_eyeballs_create(struct Curl_cfilter **pcf,
|
||||
(void)data;
|
||||
(void)conn;
|
||||
*pcf = NULL;
|
||||
ctx = calloc(sizeof(*ctx), 1);
|
||||
ctx = calloc(1, sizeof(*ctx));
|
||||
if(!ctx) {
|
||||
result = CURLE_OUT_OF_MEMORY;
|
||||
goto out;
|
||||
@ -1326,7 +1326,7 @@ static CURLcode cf_setup_create(struct Curl_cfilter **pcf,
|
||||
CURLcode result = CURLE_OK;
|
||||
|
||||
(void)data;
|
||||
ctx = calloc(sizeof(*ctx), 1);
|
||||
ctx = calloc(1, sizeof(*ctx));
|
||||
if(!ctx) {
|
||||
result = CURLE_OUT_OF_MEMORY;
|
||||
goto out;
|
||||
|
@ -1345,7 +1345,7 @@ static int cookie_sort_ct(const void *p1, const void *p2)
|
||||
|
||||
static struct Cookie *dup_cookie(struct Cookie *src)
|
||||
{
|
||||
struct Cookie *d = calloc(sizeof(struct Cookie), 1);
|
||||
struct Cookie *d = calloc(1, sizeof(struct Cookie));
|
||||
if(d) {
|
||||
CLONE(domain);
|
||||
CLONE(path);
|
||||
|
@ -382,7 +382,7 @@ struct Curl_addrinfo *Curl_doh(struct Curl_easy *data,
|
||||
DEBUGASSERT(conn);
|
||||
|
||||
/* start clean, consider allocating this struct on demand */
|
||||
dohp = data->req.doh = calloc(sizeof(struct dohdata), 1);
|
||||
dohp = data->req.doh = calloc(1, sizeof(struct dohdata));
|
||||
if(!dohp)
|
||||
return NULL;
|
||||
|
||||
|
@ -947,7 +947,7 @@ static CURLcode ftp_state_use_port(struct Curl_easy *data,
|
||||
char *port_start = NULL;
|
||||
char *port_sep = NULL;
|
||||
|
||||
addr = calloc(addrlen + 1, 1);
|
||||
addr = calloc(1, addrlen + 1);
|
||||
if(!addr) {
|
||||
result = CURLE_OUT_OF_MEMORY;
|
||||
goto out;
|
||||
@ -4379,7 +4379,7 @@ static CURLcode ftp_setup_connection(struct Curl_easy *data,
|
||||
CURLcode result = CURLE_OK;
|
||||
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
||||
|
||||
ftp = calloc(sizeof(struct FTP), 1);
|
||||
ftp = calloc(1, sizeof(struct FTP));
|
||||
if(!ftp)
|
||||
return CURLE_OUT_OF_MEMORY;
|
||||
|
||||
|
@ -533,7 +533,7 @@ static struct Curl_addrinfo *get_localhost6(int port, const char *name)
|
||||
struct sockaddr_in6 sa6;
|
||||
unsigned char ipv6[16];
|
||||
unsigned short port16 = (unsigned short)(port & 0xffff);
|
||||
ca = calloc(sizeof(struct Curl_addrinfo) + ss_size + hostlen + 1, 1);
|
||||
ca = calloc(1, sizeof(struct Curl_addrinfo) + ss_size + hostlen + 1);
|
||||
if(!ca)
|
||||
return NULL;
|
||||
|
||||
@ -580,7 +580,7 @@ static struct Curl_addrinfo *get_localhost(int port, const char *name)
|
||||
return NULL;
|
||||
memcpy(&sa.sin_addr, &ipv4, sizeof(ipv4));
|
||||
|
||||
ca = calloc(sizeof(struct Curl_addrinfo) + ss_size + hostlen + 1, 1);
|
||||
ca = calloc(1, sizeof(struct Curl_addrinfo) + ss_size + hostlen + 1);
|
||||
if(!ca)
|
||||
return NULL;
|
||||
ca->ai_flags = 0;
|
||||
|
@ -77,7 +77,7 @@ static time_t hsts_debugtime(void *unused)
|
||||
|
||||
struct hsts *Curl_hsts_init(void)
|
||||
{
|
||||
struct hsts *h = calloc(sizeof(struct hsts), 1);
|
||||
struct hsts *h = calloc(1, sizeof(struct hsts));
|
||||
if(h) {
|
||||
Curl_llist_init(&h->list, NULL);
|
||||
}
|
||||
@ -109,7 +109,7 @@ void Curl_hsts_cleanup(struct hsts **hp)
|
||||
|
||||
static struct stsentry *hsts_entry(void)
|
||||
{
|
||||
return calloc(sizeof(struct stsentry), 1);
|
||||
return calloc(1, sizeof(struct stsentry));
|
||||
}
|
||||
|
||||
static CURLcode hsts_create(struct hsts *h,
|
||||
|
@ -2423,7 +2423,7 @@ CURLcode Curl_http_body(struct Curl_easy *data, struct connectdata *conn,
|
||||
/* Convert the form structure into a mime structure, then keep
|
||||
the conversion */
|
||||
if(!data->state.formp) {
|
||||
data->state.formp = calloc(sizeof(curl_mimepart), 1);
|
||||
data->state.formp = calloc(1, sizeof(curl_mimepart));
|
||||
if(!data->state.formp)
|
||||
return CURLE_OUT_OF_MEMORY;
|
||||
Curl_mime_cleanpart(data->state.formp);
|
||||
|
@ -2598,7 +2598,7 @@ static CURLcode http2_cfilter_add(struct Curl_cfilter **pcf,
|
||||
CURLcode result = CURLE_OUT_OF_MEMORY;
|
||||
|
||||
DEBUGASSERT(data->conn);
|
||||
ctx = calloc(sizeof(*ctx), 1);
|
||||
ctx = calloc(1, sizeof(*ctx));
|
||||
if(!ctx)
|
||||
goto out;
|
||||
|
||||
@ -2624,7 +2624,7 @@ static CURLcode http2_cfilter_insert_after(struct Curl_cfilter *cf,
|
||||
CURLcode result = CURLE_OUT_OF_MEMORY;
|
||||
|
||||
(void)data;
|
||||
ctx = calloc(sizeof(*ctx), 1);
|
||||
ctx = calloc(1, sizeof(*ctx));
|
||||
if(!ctx)
|
||||
goto out;
|
||||
|
||||
|
@ -1428,7 +1428,7 @@ static CURLcode imap_init(struct Curl_easy *data)
|
||||
CURLcode result = CURLE_OK;
|
||||
struct IMAP *imap;
|
||||
|
||||
imap = data->req.p.imap = calloc(sizeof(struct IMAP), 1);
|
||||
imap = data->req.p.imap = calloc(1, sizeof(struct IMAP));
|
||||
if(!imap)
|
||||
result = CURLE_OUT_OF_MEMORY;
|
||||
|
||||
|
@ -1088,7 +1088,7 @@ static CURLcode pop3_init(struct Curl_easy *data)
|
||||
CURLcode result = CURLE_OK;
|
||||
struct POP3 *pop3;
|
||||
|
||||
pop3 = data->req.p.pop3 = calloc(sizeof(struct POP3), 1);
|
||||
pop3 = data->req.p.pop3 = calloc(1, sizeof(struct POP3));
|
||||
if(!pop3)
|
||||
result = CURLE_OUT_OF_MEMORY;
|
||||
|
||||
|
@ -1320,7 +1320,7 @@ static CURLcode smtp_init(struct Curl_easy *data)
|
||||
CURLcode result = CURLE_OK;
|
||||
struct SMTP *smtp;
|
||||
|
||||
smtp = data->req.p.smtp = calloc(sizeof(struct SMTP), 1);
|
||||
smtp = data->req.p.smtp = calloc(1, sizeof(struct SMTP));
|
||||
if(!smtp)
|
||||
result = CURLE_OUT_OF_MEMORY;
|
||||
|
||||
|
@ -1132,7 +1132,7 @@ static CURLcode socks_proxy_cf_connect(struct Curl_cfilter *cf,
|
||||
return result;
|
||||
|
||||
if(!sx) {
|
||||
sx = calloc(sizeof(*sx), 1);
|
||||
sx = calloc(1, sizeof(*sx));
|
||||
if(!sx)
|
||||
return CURLE_OUT_OF_MEMORY;
|
||||
cf->ctx = sx;
|
||||
|
@ -1350,7 +1350,7 @@ static CURLUcode parseurl_and_replace(const char *url, CURLU *u,
|
||||
*/
|
||||
CURLU *curl_url(void)
|
||||
{
|
||||
return calloc(sizeof(struct Curl_URL), 1);
|
||||
return calloc(1, sizeof(struct Curl_URL));
|
||||
}
|
||||
|
||||
void curl_url_cleanup(CURLU *u)
|
||||
@ -1372,7 +1372,7 @@ void curl_url_cleanup(CURLU *u)
|
||||
|
||||
CURLU *curl_url_dup(const CURLU *in)
|
||||
{
|
||||
struct Curl_URL *u = calloc(sizeof(struct Curl_URL), 1);
|
||||
struct Curl_URL *u = calloc(1, sizeof(struct Curl_URL));
|
||||
if(u) {
|
||||
DUP(u, in, scheme);
|
||||
DUP(u, in, user);
|
||||
|
@ -1052,7 +1052,7 @@ CURLcode Curl_cf_msh3_create(struct Curl_cfilter **pcf,
|
||||
(void)data;
|
||||
(void)conn;
|
||||
(void)ai; /* TODO: msh3 resolves itself? */
|
||||
ctx = calloc(sizeof(*ctx), 1);
|
||||
ctx = calloc(1, sizeof(*ctx));
|
||||
if(!ctx) {
|
||||
result = CURLE_OUT_OF_MEMORY;
|
||||
goto out;
|
||||
|
@ -2785,7 +2785,7 @@ CURLcode Curl_cf_ngtcp2_create(struct Curl_cfilter **pcf,
|
||||
CURLcode result;
|
||||
|
||||
(void)data;
|
||||
ctx = calloc(sizeof(*ctx), 1);
|
||||
ctx = calloc(1, sizeof(*ctx));
|
||||
if(!ctx) {
|
||||
result = CURLE_OUT_OF_MEMORY;
|
||||
goto out;
|
||||
|
@ -1669,7 +1669,7 @@ CURLcode Curl_cf_quiche_create(struct Curl_cfilter **pcf,
|
||||
|
||||
(void)data;
|
||||
(void)conn;
|
||||
ctx = calloc(sizeof(*ctx), 1);
|
||||
ctx = calloc(1, sizeof(*ctx));
|
||||
if(!ctx) {
|
||||
result = CURLE_OUT_OF_MEMORY;
|
||||
goto out;
|
||||
|
@ -51,7 +51,7 @@ int Curl_mbedtlsthreadlock_thread_setup(void)
|
||||
{
|
||||
int i;
|
||||
|
||||
mutex_buf = calloc(NUMT * sizeof(MBEDTLS_MUTEX_T), 1);
|
||||
mutex_buf = calloc(1, NUMT * sizeof(MBEDTLS_MUTEX_T));
|
||||
if(!mutex_buf)
|
||||
return 0; /* error, no number of threads defined */
|
||||
|
||||
|
@ -1013,7 +1013,7 @@ static CURLcode CopyCertSubject(struct Curl_easy *data,
|
||||
}
|
||||
else {
|
||||
size_t cbuf_size = ((size_t)CFStringGetLength(c) * 4) + 1;
|
||||
cbuf = calloc(cbuf_size, 1);
|
||||
cbuf = calloc(1, cbuf_size);
|
||||
if(cbuf) {
|
||||
if(!CFStringGetCString(c, cbuf, cbuf_size,
|
||||
kCFStringEncodingUTF8)) {
|
||||
|
@ -211,7 +211,7 @@ static curl_off_t all_pers;
|
||||
static CURLcode add_per_transfer(struct per_transfer **per)
|
||||
{
|
||||
struct per_transfer *p;
|
||||
p = calloc(sizeof(struct per_transfer), 1);
|
||||
p = calloc(1, sizeof(struct per_transfer));
|
||||
if(!p)
|
||||
return CURLE_OUT_OF_MEMORY;
|
||||
if(!transfers)
|
||||
|
@ -358,7 +358,7 @@ static ParameterError addvariable(struct GlobalConfig *global,
|
||||
if(check)
|
||||
notef(global, "Overwriting variable '%s'", check->name);
|
||||
|
||||
p = calloc(sizeof(struct var), 1);
|
||||
p = calloc(1, sizeof(struct var));
|
||||
if(!p)
|
||||
return PARAM_NO_MEM;
|
||||
|
||||
|
@ -183,7 +183,7 @@ OM_uint32 gss_init_sec_context(OM_uint32 *min,
|
||||
return GSS_S_FAILURE;
|
||||
}
|
||||
|
||||
ctx = (gss_ctx_id_t) calloc(sizeof(*ctx), 1);
|
||||
ctx = (gss_ctx_id_t) calloc(1, sizeof(*ctx));
|
||||
if(!ctx) {
|
||||
*min = GSS_NO_MEMORY;
|
||||
return GSS_S_FAILURE;
|
||||
|
@ -149,7 +149,7 @@ static int readline(char **buffer, size_t *bufsize, size_t *length,
|
||||
char *newptr;
|
||||
|
||||
if(!*buffer) {
|
||||
*buffer = calloc(128, 1);
|
||||
*buffer = calloc(1, 128);
|
||||
if(!*buffer)
|
||||
return GPE_OUT_OF_MEMORY;
|
||||
*bufsize = 128;
|
||||
|
@ -185,7 +185,7 @@ static CURLcode cf_test_create(struct Curl_cfilter **pcf,
|
||||
|
||||
(void)data;
|
||||
(void)conn;
|
||||
ctx = calloc(sizeof(*ctx), 1);
|
||||
ctx = calloc(1, sizeof(*ctx));
|
||||
if(!ctx) {
|
||||
result = CURLE_OUT_OF_MEMORY;
|
||||
goto out;
|
||||
|
Loading…
x
Reference in New Issue
Block a user