From: Bodo Möller Date: Tue, 5 Nov 2002 12:24:41 +0000 (+0000) Subject: avoid Purify warnings X-Git-Tag: OpenSSL_0_9_6h~63 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=33c3f72792e7c232862b6c2b17cf60ad3c4d8a17;p=oweals%2Fopenssl.git avoid Purify warnings Submitted by: Nils Larsch --- diff --git a/ssl/ssltest.c b/ssl/ssltest.c index 24b3f63e2b..c779751b8c 100644 --- a/ssl/ssltest.c +++ b/ssl/ssltest.c @@ -630,6 +630,8 @@ int doit_biopair(SSL *s_ssl, SSL *c_ssl, long count, int i, r; clock_t c_clock = clock(); + memset(cbuf, 0, sizeof(cbuf)); + if (debug) if (SSL_in_init(c_ssl)) printf("client waiting in SSL_connect - %s\n", @@ -714,6 +716,8 @@ int doit_biopair(SSL *s_ssl, SSL *c_ssl, long count, int i, r; clock_t s_clock = clock(); + memset(sbuf, 0, sizeof(sbuf)); + if (debug) if (SSL_in_init(s_ssl)) printf("server waiting in SSL_accept - %s\n", @@ -957,6 +961,9 @@ int doit(SSL *s_ssl, SSL *c_ssl, long count) int c_write,s_write; int do_server=0,do_client=0; + memset(cbuf,0,sizeof(cbuf)); + memset(sbuf,0,sizeof(sbuf)); + c_to_s=BIO_new(BIO_s_mem()); s_to_c=BIO_new(BIO_s_mem()); if ((s_to_c == NULL) || (c_to_s == NULL))