From 3274cc8aeca2ee83c19af20645a0ec8bc019cf97 Mon Sep 17 00:00:00 2001 From: Timo Kokkonen Date: Mon, 8 Jan 2024 10:33:21 -0800 Subject: [PATCH] Fix CWE-686 in tools/elf2uf2/main.cpp:132 (#1585) * Fix CWE-686: This argument should be of type 'void *' but is of type 'unsigned int'. * Switch %p to %08x. --- tools/elf2uf2/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/elf2uf2/main.cpp b/tools/elf2uf2/main.cpp index 6b3c525d5..5245fec36 100644 --- a/tools/elf2uf2/main.cpp +++ b/tools/elf2uf2/main.cpp @@ -129,7 +129,7 @@ int check_address_range(const address_ranges& valid_ranges, uint32_t addr, uint3 for(const auto& range : valid_ranges) { if (range.from <= addr && range.to >= addr + size) { if (range.type == address_range::type::NO_CONTENTS && !uninitialized) { - return fail(ERROR_INCOMPATIBLE, "ELF contains memory contents for uninitialized memory at %p", addr); + return fail(ERROR_INCOMPATIBLE, "ELF contains memory contents for uninitialized memory at %08x", addr); } ar = range; if (verbose) {