Commit 0ee4f13b authored by Matt Caswell's avatar Matt Caswell
Browse files

Silence some "maybe used uninitialised" warnings

parent eca5174b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
+1 −1
Original line number Diff line number Diff line
@@ -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();