We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9aaf3b1 commit da2e754Copy full SHA for da2e754
test/bigint.cc
@@ -46,7 +46,7 @@ Value TestWords(const CallbackInfo& info) {
46
47
int sign_bit;
48
size_t word_count = 10;
49
- uint64_t words[10];
+ uint64_t words[10] = {0};
50
51
big.ToWords(&sign_bit, &word_count, words);
52
@@ -61,7 +61,7 @@ Value TestWords(const CallbackInfo& info) {
61
Value TestTooBigBigInt(const CallbackInfo& info) {
62
int sign_bit = 0;
63
size_t word_count = SIZE_MAX;
64
65
66
return BigInt::New(info.Env(), sign_bit, word_count, words);
67
}
0 commit comments