The branch main has been updated by jhb:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=b73445a32f8a3648372c0042ef633fe61b38d135

commit b73445a32f8a3648372c0042ef633fe61b38d135
Author:     John Baldwin <[email protected]>
AuthorDate: 2024-07-19 17:02:45 +0000
Commit:     John Baldwin <[email protected]>
CommitDate: 2024-07-19 17:06:11 +0000

    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
---
 contrib/elftoolchain/libdwarf/libdwarf_init.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/elftoolchain/libdwarf/libdwarf_init.c 
b/contrib/elftoolchain/libdwarf/libdwarf_init.c
index b85c87c59af0..95ed6147ba89 100644
--- a/contrib/elftoolchain/libdwarf/libdwarf_init.c
+++ b/contrib/elftoolchain/libdwarf/libdwarf_init.c
@@ -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);
        }

Reply via email to