minor warnings fixes

This commit is contained in:
toddouska
2012-11-13 18:32:13 -08:00
parent 54a7740cfe
commit 5767db4cb5
2 changed files with 2 additions and 2 deletions

View File

@ -1548,7 +1548,7 @@ void fp_montgomery_calc_normalization(fp_int *a, fp_int *b)
/* computes x/R == x (mod N) via Montgomery Reduction */
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;
/* bail if too large */

View File

@ -7546,7 +7546,7 @@ int SetCipherList(Suites* s, const char* list)
{
int ret = 0;
word32 length = 0;
byte* out;
byte* out = NULL;
(void)length; /* shut up compiler warnings */
(void)out;