mirror of
https://github.com/QuasarApp/openssl.git
synced 2025-05-01 12:09:42 +00:00
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:
parent
ebe1830232
commit
236e3731bb
@ -13,8 +13,8 @@
|
|||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
SSL_CTX *sctx, *cctx;
|
SSL_CTX *sctx = NULL, *cctx = NULL;
|
||||||
SSL *sssl, *cssl;
|
SSL *sssl = NULL, *cssl = NULL;
|
||||||
const char *msg = "Dummy";
|
const char *msg = "Dummy";
|
||||||
BIO *err = NULL, *wbio = NULL;
|
BIO *err = NULL, *wbio = NULL;
|
||||||
int ret = 1, len;
|
int ret = 1, len;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user