mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 19:51:04 +01:00
elftoolchain: Consistently use item count as the first argument to calloc
Reported by: GCC 14 -Wcalloc-transposed-args Reviewed by: rlibby, emaste Differential Revision: https://reviews.freebsd.org/D46007
This commit is contained in:
parent
bf3b889a5b
commit
b73445a32f
@ -302,7 +302,7 @@ _dwarf_alloc(Dwarf_Debug *ret_dbg, int mode, Dwarf_Error *error)
|
||||
{
|
||||
Dwarf_Debug dbg;
|
||||
|
||||
if ((dbg = calloc(sizeof(struct _Dwarf_Debug), 1)) == NULL) {
|
||||
if ((dbg = calloc(1, sizeof(struct _Dwarf_Debug))) == NULL) {
|
||||
DWARF_SET_ERROR(dbg, error, DW_DLE_MEMORY);
|
||||
return (DW_DLE_MEMORY);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user