Merge branch 'as/calloc-takes-nmemb-then-size'
Code clean-up. * as/calloc-takes-nmemb-then-size: calloc() and xcalloc() takes nmemb and then size
This commit is contained in:
@ -633,7 +633,7 @@ static void populate_value(struct refinfo *ref)
|
|||||||
unsigned long size;
|
unsigned long size;
|
||||||
const unsigned char *tagged;
|
const unsigned char *tagged;
|
||||||
|
|
||||||
ref->value = xcalloc(sizeof(struct atom_value), used_atom_cnt);
|
ref->value = xcalloc(used_atom_cnt, sizeof(struct atom_value));
|
||||||
|
|
||||||
if (need_symref && (ref->flag & REF_ISSYMREF) && !ref->symref) {
|
if (need_symref && (ref->flag & REF_ISSYMREF) && !ref->symref) {
|
||||||
unsigned char unused1[20];
|
unsigned char unused1[20];
|
||||||
|
@ -919,7 +919,7 @@ static struct imap_store *imap_open_store(struct imap_server_conf *srvc, char *f
|
|||||||
|
|
||||||
ctx = xcalloc(1, sizeof(*ctx));
|
ctx = xcalloc(1, sizeof(*ctx));
|
||||||
|
|
||||||
ctx->imap = imap = xcalloc(sizeof(*imap), 1);
|
ctx->imap = imap = xcalloc(1, sizeof(*imap));
|
||||||
imap->buf.sock.fd[0] = imap->buf.sock.fd[1] = -1;
|
imap->buf.sock.fd[0] = imap->buf.sock.fd[1] = -1;
|
||||||
imap->in_progress_append = &imap->in_progress;
|
imap->in_progress_append = &imap->in_progress;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user