OS: SUNOS5.7 GCC
under 0.9.5a
without purify , my program runs well, but it cannt construct SSL_CTX after purified.
this is the log:
2000-09-26 11:34:40 #1 INIT: construct SSL_CTX fail, program abort
2000-09-26 11:34:40 #1 INIT: SSL: error:140A90A1:SSL routines:SSL_CTX_new:library has no ciphers
 
under 0.9.6
even worse, core dump.
0  0xe0624 in _dopr () at ../../gcc/cp/new2.cc:40
#1  0xe1d08 in BIO_vsnprintf () at ../../gcc/cp/new2.cc:40
#2  0xe1b18 in BIO_snprintf () at ../../gcc/cp/new2.cc:40
#3  0xe501c in ERR_error_string_n () at ../../gcc/cp/new2.cc:40
#4  0xe5c30 in ERR_error_string () at ../../gcc/cp/new2.cc:40
#5  0x880f8 in liInitialize () at aisslproxy.cpp:402
#6  0x86e9c in main (argc=8, argv=0xffbefb94) at aisslproxy.cpp:115
 
        if(mpSslCtx == NULL){
                int err = ERR_get_error();
                gvLog(LOG_ERR_USER, "INIT: construct SSL_CTX fail, program abort");
-------->       gvLog(LOG_ERR_USER, "INIT: SSL: %s", ERR_error_string(err, NULL));  // core dump here
                exit(-1);
        }

Reply via email to