Re: BIO memory leak

2005-03-23 Thread Richard Levitte - VMS Whacker
In message <[EMAIL PROTECTED]> on Wed, 23 Mar 2005 12:28:51 -0800, Michael D'Errico <[EMAIL PROTECTED]> said: mike-mlm> > Try the FAQ. This gets asked a *lot*. mike-mlm> mike-mlm> I call ERR_remove_state in my thread cleanup mike-mlm> routine, but was unaware of the other functions mike-mlm> men

Re: BIO memory leak

2005-03-23 Thread Dr. Stephen Henson
On Wed, Mar 23, 2005, Michael D'Errico wrote: > >Try the FAQ. This gets asked a *lot*. > > I call ERR_remove_state in my thread cleanup > routine, but was unaware of the other functions > mentioned in the FAQ. Should I also call these > other functions in my thread cleanup routine? > Or is the d

Re: BIO memory leak

2005-03-23 Thread Michael D'Errico
Try the FAQ. This gets asked a *lot*. I call ERR_remove_state in my thread cleanup routine, but was unaware of the other functions mentioned in the FAQ. Should I also call these other functions in my thread cleanup routine? Or is the data allocated per-application and not per-thread? Thanks, Mike

Re: BIO memory leak

2005-03-23 Thread Richard Levitte - VMS Whacker
In message <[EMAIL PROTECTED]> on Wed, 23 Mar 2005 08:49:22 -0500, Chris Lalancette <[EMAIL PROTECTED]> said: clalancette> Hello there, clalancette> I have a question about using OpenSSL that I haven't clalancette> been able to find an answer to on Google. I thought I clalancette> would ask

Re: BIO memory leak

2005-03-23 Thread Dr. Stephen Henson
On Wed, Mar 23, 2005, Chris Lalancette wrote: > Hello there, > I have a question about using OpenSSL that I haven't been able to > find an answer to on Google. I thought I would ask here. [snipped] Try the FAQ. This gets asked a *lot*. Steve. -- Dr Stephen N. Henson. Email, S/MIME and PGP

BIO memory leak

2005-03-23 Thread Chris Lalancette
Hello there, I have a question about using OpenSSL that I haven't been able to find an answer to on Google. I thought I would ask here. Here is my simple program: #include #include #include #include int main() { BIO *mbio; mbio=BIO_new(BIO_s_mem()); BIO_free(mbio); retur