#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);
        }
 
without purify, the program runs well, but after compile with purify, i cannt even construct SSL_CTX , what happened?

Reply via email to