mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
src: fix string format mistake for 32 bit node
warning: format ‘%lx’ expects argument of type ‘long
unsigned int’, but argument 3 has type ‘unsigned int’ [-Wformat=]
BIO_printf(bio, "0x%lx", exponent_word);
PR-URL: https://github.com/nodejs/node/pull/10082
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
This commit is contained in:
committed by
Myles Borins
parent
885c80f3de
commit
40eba1270a
@@ -1536,9 +1536,14 @@ static Local<Object> X509ToObject(Environment* env, X509* cert) {
|
||||
String::kNormalString, mem->length));
|
||||
(void) BIO_reset(bio);
|
||||
|
||||
BN_ULONG exponent_word = BN_get_word(rsa->e);
|
||||
BIO_printf(bio, "0x%lx", exponent_word);
|
||||
|
||||
uint64_t exponent_word = static_cast<uint64_t>(BN_get_word(rsa->e));
|
||||
uint32_t lo = static_cast<uint32_t>(exponent_word);
|
||||
uint32_t hi = static_cast<uint32_t>(exponent_word >> 32);
|
||||
if (hi == 0) {
|
||||
BIO_printf(bio, "0x%x", lo);
|
||||
} else {
|
||||
BIO_printf(bio, "0x%x%08x", hi, lo);
|
||||
}
|
||||
BIO_get_mem_ptr(bio, &mem);
|
||||
info->Set(env->exponent_string(),
|
||||
String::NewFromUtf8(env->isolate(), mem->data,
|
||||
|
||||
Reference in New Issue
Block a user