OpenSSL::SSL_library_init() memory leak

后端 未结 4 1618
梦如初夏
梦如初夏 2020-12-03 03:43

Recently I have started studying about memory leaks in C++, so I may ask a naive questions.
I have a c++ library that is using OpenSSL - my task is to check if there are

4条回答
  •  [愿得一人]
    2020-12-03 04:27

    To get rid of compilation error in Joe H's answer:

    sk_SSL_COMP_free(SSL_COMP_get_compression_methods());
    

提交回复
热议问题