Stanislav Mikhailenko: > Hello I use openssl 0.9.8i in my project under Win32. > There are some leaks detected when i do just it: > > X509* x=X509_new(); > X509_free(); > > It was in previous versions too. > What should i do to remove this?
Did you confirm that the memory was leaked and not actually still in use? To test this, repeat the code block to allocate and free two X509 objects and see if twice as much memory is "leaked". If you see the same amount of memory "leaked", that proves that something the code did the first time made the code use less memory the second time. This shows that the memory was not actually leaked, but was in fact in use -- and in fact was used by the second operation. DS ______________________________________________________________________ OpenSSL Project http://www.openssl.org User Support Mailing List [email protected] Automated List Manager [EMAIL PROTECTED]
