Commit 236e3731 authored by Matt Caswell's avatar Matt Caswell
Browse files

Fix initialisation in fatalerrtest

parent ebe18302
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;