From 51a765b37671b4460fdefef5000b9eb6988fddc8 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Wed, 5 Apr 2023 19:48:56 -0400 Subject: [PATCH] boot/image-board.c: Silence warning in select_ramdisk When building with clang we get a warning that rdaddr could be uninitialized in one case. While this cannot functionally happen, we can easily silence the warning. Signed-off-by: Tom Rini Reviewed-by: Simon Glass --- boot/image-board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot/image-board.c b/boot/image-board.c index c602832..d500da1 100644 --- a/boot/image-board.c +++ b/boot/image-board.c @@ -328,7 +328,7 @@ static int select_ramdisk(struct bootm_headers *images, const char *select, u8 a bool done_select = !select; bool done = false; int rd_noffset; - ulong rd_addr; + ulong rd_addr = 0; char *buf; if (CONFIG_IS_ENABLED(FIT)) { -- 2.7.4