On Fri, 7 Apr 2023 at 01:58, Tom Rini <tr...@konsulko.com> wrote:
>
> When building with clang, we see:
> board/emulation/common/qemu_dfu.c:51:24: warning: 'memset' call operates on 
> objects of type 'char' while the size is based on a different type 'char *' 
> [-Wsizeof-pointer-memaccess]
>
> As we're calling memset with the length set to the size of the pointer
> and not the size of the buffer. Correct this with a call of the size of
> the buffer itself.
>
> Signed-off-by: Tom Rini <tr...@konsulko.com>
> ---
> Cc: Tuomas Tynkkynen <tuomas.tynkky...@iki.fi>
> Cc: Sughosh Ganu <sughosh.g...@linaro.org>
> Cc: Simon Glass <s...@chromium.org>
> ---
>  board/emulation/common/qemu_dfu.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Simon Glass <s...@chromium.org>

Reply via email to