зеркало из https://github.com/github/ruby.git
Fix `calloc` arguments order for -Wcalloc-transposed-args
This commit is contained in:
Родитель
1a31d38c56
Коммит
f630b24d7a
|
@ -1950,7 +1950,7 @@ w32_cmdvector(const WCHAR *cmd, char ***vec, UINT cp, rb_encoding *enc)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
curr = (NtCmdLineElement *)calloc(sizeof(NtCmdLineElement), 1);
|
curr = (NtCmdLineElement *)calloc(1, sizeof(NtCmdLineElement));
|
||||||
if (!curr) goto do_nothing;
|
if (!curr) goto do_nothing;
|
||||||
curr->str = rb_w32_wstr_to_mbstr(cp, base, len, &curr->len);
|
curr->str = rb_w32_wstr_to_mbstr(cp, base, len, &curr->len);
|
||||||
curr->flags |= NTMALLOC;
|
curr->flags |= NTMALLOC;
|
||||||
|
@ -2156,7 +2156,7 @@ w32_wopendir(const WCHAR *wpath)
|
||||||
//
|
//
|
||||||
// Get us a DIR structure
|
// Get us a DIR structure
|
||||||
//
|
//
|
||||||
p = calloc(sizeof(DIR), 1);
|
p = calloc(1, sizeof(DIR));
|
||||||
if (p == NULL)
|
if (p == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче