Free SSL_CTX after BIO
authorDr. Stephen Henson <steve@openssl.org>
Wed, 30 Sep 2009 21:36:17 +0000 (21:36 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Wed, 30 Sep 2009 21:36:17 +0000 (21:36 +0000)
apps/ocsp.c

index 03944c0757887645432b2eae6b1d0095c14ed3f4..173a67b4c47da581ea722ede9308c6f50777bcd6 100644 (file)
@@ -1385,10 +1385,10 @@ OCSP_RESPONSE *process_responder(BIO *err, OCSP_REQUEST *req,
        if (!resp)
                BIO_printf(bio_err, "Error querying OCSP responsder\n");
        end:
        if (!resp)
                BIO_printf(bio_err, "Error querying OCSP responsder\n");
        end:
-       if (ctx)
-               SSL_CTX_free(ctx);
        if (cbio)
                BIO_free_all(cbio);
        if (cbio)
                BIO_free_all(cbio);
+       if (ctx)
+               SSL_CTX_free(ctx);
        return resp;
        }
 
        return resp;
        }