summaryrefslogtreecommitdiff
path: root/usr.bin/openssl
diff options
context:
space:
mode:
authorKinichiro Inoguchi <inoguchi@cvs.openbsd.org>2018-01-28 09:21:35 +0000
committerKinichiro Inoguchi <inoguchi@cvs.openbsd.org>2018-01-28 09:21:35 +0000
commit216cf8ffffae6adf1664cee61fc39795696c5b2e (patch)
tree8bded68283ffa57b1eb5a93fbf05d21bcb70f786 /usr.bin/openssl
parent8bae291f3c5f7e7ff926ef92d4c7fcb5bdc2346e (diff)
Initialize variables to avoid compiler warnings
ok jsing@
Diffstat (limited to 'usr.bin/openssl')
-rw-r--r--usr.bin/openssl/pkeyutl.c4
-rw-r--r--usr.bin/openssl/s_server.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/openssl/pkeyutl.c b/usr.bin/openssl/pkeyutl.c
index 4752b4c79a2..dd52e93dfa4 100644
--- a/usr.bin/openssl/pkeyutl.c
+++ b/usr.bin/openssl/pkeyutl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pkeyutl.c,v 1.11 2017/01/20 08:57:12 deraadt Exp $ */
+/* $OpenBSD: pkeyutl.c,v 1.12 2018/01/28 09:21:34 inoguchi Exp $ */
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
* project 2006.
*/
@@ -95,7 +95,7 @@ pkeyutl_main(int argc, char **argv)
int keysize = -1;
unsigned char *buf_in = NULL, *buf_out = NULL, *sig = NULL;
- size_t buf_outlen;
+ size_t buf_outlen = 0;
int buf_inlen = 0, siglen = -1;
int ret = 1, rv = -1;
diff --git a/usr.bin/openssl/s_server.c b/usr.bin/openssl/s_server.c
index 7254109fba7..ccab5b32804 100644
--- a/usr.bin/openssl/s_server.c
+++ b/usr.bin/openssl/s_server.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: s_server.c,v 1.27 2017/08/12 21:04:33 jsing Exp $ */
+/* $OpenBSD: s_server.c,v 1.28 2018/01/28 09:21:34 inoguchi Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -404,7 +404,7 @@ cert_status_cb(SSL * s, void *arg)
{
tlsextstatusctx *srctx = arg;
BIO *err = srctx->err;
- char *host, *port, *path;
+ char *host = NULL, *port = NULL, *path = NULL;
int use_ssl;
unsigned char *rspder = NULL;
int rspderlen;