ZLToolKit
ZLToolKit copied to clipboard
Does `SSL_Box`'s `_read_bio` and `_write_bio` leak memory if they don't release memory with `BIO_free`?
As shown in the figure
如图
TRANS_BY_GITHUB_AI_ASSISTANT
std::unique_ptr<BIO, decltype(&BIO_free)> _read_bio(BIO_new(BIO_s_mem()), BIO_free); ?
This should have a memory leak problem. I'll test it.
这个应该有内存泄露的问题 我测试下
TRANS_BY_GITHUB_AI_ASSISTANT