public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] lib: rsa: cosmetic: fix building warning
@ 2022-12-06  7:41 Haijun Qin
  2022-12-07  1:08 ` Simon Glass
  2023-01-12 15:17 ` Tom Rini
  0 siblings, 2 replies; 4+ messages in thread
From: Haijun Qin @ 2022-12-06  7:41 UTC (permalink / raw)
  To: u-boot; +Cc: zhuwenjun, zhengyu, jinyanjiang, qinhaijun, zhangdongdong

add initialization of variable 'node',this can aviod the building
warning:

    'node' may be used uninitialized [-Wmaybe-uninitialized]

Signed-off-by: Haijun Qin <qinhaijun@eswincomputing.com>
---
 lib/rsa/rsa-sign.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/rsa/rsa-sign.c b/lib/rsa/rsa-sign.c
index b2a21199e4..d20bdb58a5 100644
--- a/lib/rsa/rsa-sign.c
+++ b/lib/rsa/rsa-sign.c
@@ -608,7 +608,7 @@ int rsa_add_verify_data(struct image_sign_info *info, void *keydest)
 	BIGNUM *modulus, *r_squared;
 	uint64_t exponent;
 	uint32_t n0_inv;
-	int parent, node;
+	int parent, node = -FDT_ERR_NOTFOUND;
 	char name[100];
 	int ret;
 	int bits;

base-commit: d2c5607edde2544e059fa871927877213f6bd532
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-01-12 15:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-06  7:41 [PATCH] lib: rsa: cosmetic: fix building warning Haijun Qin
2022-12-07  1:08 ` Simon Glass
2022-12-07  3:10   ` Haijun Qin
2023-01-12 15:17 ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox