We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b34fd2f + c1b683f commit 7898823Copy full SHA for 7898823
wolfcrypt/src/sp_int.c
@@ -5322,10 +5322,10 @@ static void _sp_copy(const sp_int* a, sp_int* r)
5322
XMEMCPY(r->dp, a->dp, a->used * (word32)SP_WORD_SIZEOF);
5323
}
5324
/* Set number of used words in result. */
5325
- r->used = a->used;
+ r->used = a->used;/* // NOLINT(clang-analyzer-core.uninitialized.Assign) */
5326
#ifdef WOLFSSL_SP_INT_NEGATIVE
5327
/* Set sign of result. */
5328
- r->sign = a->sign;
+ r->sign = a->sign;/* // NOLINT(clang-analyzer-core.uninitialized.Assign) */
5329
#endif
5330
5331
0 commit comments