| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent d2e54e5 commit dc0c274
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -113,7 +113,7 @@ static napi_value TestWords(napi_env env, napi_callback_info info) { | |||
| 113 | 113 | static napi_value CreateTooBigBigInt(napi_env env, napi_callback_info info) { | |
| 114 | 114 | int sign_bit = 0; | |
| 115 | 115 | size_t word_count = SIZE_MAX; | |
| 116 | - uint64_t words[10]; | ||
| 116 | + uint64_t words[10] = {0}; | ||
| 117 | 117 | ||
| 118 | 118 | napi_value output; | |
| 119 | 119 | ||
@@ -125,7 +125,7 @@ static napi_value CreateTooBigBigInt(napi_env env, napi_callback_info info) { | |||
| 125 | 125 | ||
| 126 | 126 | // Test that we correctly forward exceptions from the engine. | |
| 127 | 127 | static napi_value MakeBigIntWordsThrow(napi_env env, napi_callback_info info) { | |
| 128 | - uint64_t words[10]; | ||
| 128 | + uint64_t words[10] = {0}; | ||
| 129 | 129 | napi_value output; | |
| 130 | 130 | ||
| 131 | 131 | napi_status status = napi_create_bigint_words(env, | |
| Back | FazBrowse Home | New Git URL |
0 commit comments