From: Haijun Qin <qinhaijun@eswincomputing.com>
To: u-boot@lists.denx.de
Cc: zhuwenjun@eswincomputing.com, zhengyu@eswincomputing.com,
jinyanjiang@eswincomputing.com, qinhaijun@eswincomputing.com,
zhangdongdong@eswincomputing.com
Subject: [PATCH] lib: rsa: cosmetic: fix building warning
Date: Tue, 6 Dec 2022 15:41:37 +0800 [thread overview]
Message-ID: <20221206074137.30086-1-qinhaijun@eswincomputing.com> (raw)
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
next reply other threads:[~2022-12-06 14:50 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-06 7:41 Haijun Qin [this message]
2022-12-07 1:08 ` [PATCH] lib: rsa: cosmetic: fix building warning Simon Glass
2022-12-07 3:10 ` Haijun Qin
2023-01-12 15:17 ` Tom Rini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20221206074137.30086-1-qinhaijun@eswincomputing.com \
--to=qinhaijun@eswincomputing.com \
--cc=jinyanjiang@eswincomputing.com \
--cc=u-boot@lists.denx.de \
--cc=zhangdongdong@eswincomputing.com \
--cc=zhengyu@eswincomputing.com \
--cc=zhuwenjun@eswincomputing.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox