Silence some "maybe used uninitialised" warnings
Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
parent
eca5174b5f
commit
0ee4f13bba
2 changed files with 2 additions and 2 deletions
|
@ -1211,7 +1211,7 @@ dtls1_retransmit_message(SSL *s, unsigned short seq, unsigned long frag_off,
|
|||
unsigned long header_length;
|
||||
unsigned char seq64be[8];
|
||||
struct dtls1_retransmit_state saved_state;
|
||||
unsigned char save_write_sequence[8];
|
||||
unsigned char save_write_sequence[8] = {0, 0, 0, 0, 0, 0, 0, 0};
|
||||
|
||||
/*-
|
||||
OPENSSL_assert(s->init_num == 0);
|
||||
|
|
|
@ -84,7 +84,7 @@ int main(int argc, char *argv[])
|
|||
{
|
||||
BIO *err;
|
||||
int testresult = 0;
|
||||
int currtest;
|
||||
int currtest = 0;
|
||||
|
||||
SSL_library_init();
|
||||
SSL_load_error_strings();
|
||||
|
|
Loading…
Reference in a new issue