forked from wolfSSL/wolfssl
minor warnings fixes
This commit is contained in:
@ -1548,7 +1548,7 @@ void fp_montgomery_calc_normalization(fp_int *a, fp_int *b)
|
|||||||
/* computes x/R == x (mod N) via Montgomery Reduction */
|
/* computes x/R == x (mod N) via Montgomery Reduction */
|
||||||
void fp_montgomery_reduce(fp_int *a, fp_int *m, fp_digit mp)
|
void fp_montgomery_reduce(fp_int *a, fp_int *m, fp_digit mp)
|
||||||
{
|
{
|
||||||
fp_digit c[FP_SIZE], *_c, *tmpm, mu;
|
fp_digit c[FP_SIZE], *_c, *tmpm, mu = 0;
|
||||||
int oldused, x, y, pa;
|
int oldused, x, y, pa;
|
||||||
|
|
||||||
/* bail if too large */
|
/* bail if too large */
|
||||||
|
@ -7546,7 +7546,7 @@ int SetCipherList(Suites* s, const char* list)
|
|||||||
{
|
{
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
word32 length = 0;
|
word32 length = 0;
|
||||||
byte* out;
|
byte* out = NULL;
|
||||||
|
|
||||||
(void)length; /* shut up compiler warnings */
|
(void)length; /* shut up compiler warnings */
|
||||||
(void)out;
|
(void)out;
|
||||||
|
Reference in New Issue
Block a user