Thanks for your prompt response - sorry if we jumped too quickly to the conclusion that something is wrong.
Effi -----Original Message----- From: [EMAIL PROTECTED] via RT [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 09, 2004 11:22 PM To: [EMAIL PROTECTED] Subject: RE: [openssl.org #894] bug report > > To whom it may concern: > > We found that the following code fragment causes 21 memory leaks: > ------------------------------------------------------------------ > ---------- > ------------------ > #include <openssl/ssl.h> > SSL_CTX* ctx = SSL_CTX_new(SSLv23_method()); > SSL_CTX_free(ctx); > ------------------------------------------------------------------ > ---------- > ------------------ Does this code fragment cause 42 memory leaks? #include <openssl/ssl.h> SSL_CTX* ctx = SSL_CTX_new(SSLv23_method()); SSL_CTX_free(ctx); ctx = SSL_CTX_new(SSLv23_method()); SSL_CTX_free(ctx); If not, then the memory hasn't actually leaked, has it? DS ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED] --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.701 / Virus Database: 458 - Release Date: 6/7/2004 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.701 / Virus Database: 458 - Release Date: 6/7/2004 ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]
