Fix initialisation in fatalerrtest

Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4866)
This commit is contained in:
Matt Caswell 2017-12-07 14:40:49 +00:00
parent ebe1830232
commit 236e3731bb

View File

@ -13,8 +13,8 @@
int main(int argc, char *argv[])
{
SSL_CTX *sctx, *cctx;
SSL *sssl, *cssl;
SSL_CTX *sctx = NULL, *cctx = NULL;
SSL *sssl = NULL, *cssl = NULL;
const char *msg = "Dummy";
BIO *err = NULL, *wbio = NULL;
int ret = 1, len;