AW: Problem after removing memory leak

2008-04-02 Thread Wockenfuß , Frank
gt; Gesendet: Mittwoch, 2. April 2008 10:47 > An: openssl-users@openssl.org > Betreff: Re: Problem after removing memory leak > > * Wockenfuß, Frank wrote on Wed, Apr 02, 2008 at 09:07 +0200: > > Thank you for that hint. > > I will try to rebuild the class as singleton. Th

Re: Problem after removing memory leak

2008-04-02 Thread Steffen DETTMER
* Wockenfuß, Frank wrote on Wed, Apr 02, 2008 at 09:07 +0200: > Thank you for that hint. > I will try to rebuild the class as singleton. This could help, > but isn't really nice. I think you'd need multiple classes. For things done once a program life time, a C++ class (singleton) may not be suite

AW: Problem after removing memory leak

2008-04-02 Thread Wockenfuß , Frank
Thank you for that hint. I will try to rebuild the class as singleton. This could help, but isn't really nice. Best regards Frank > Wockenfuß wrote: > > Hi all, > > > > I have written a class in C++ to easily access functions > from OpenSSL from our products. > > In the constructor of my clas

Re: Problem after removing memory leak

2008-04-01 Thread jimmy bahuleyan
Wockenfuß wrote: Hi all, I have written a class in C++ to easily access functions from OpenSSL from our products. In the constructor of my class I do the following lines of code: threadSetup(); OpenSSL_add_all_digests(); OpenSSL_add_all_ciphers(); OpenSSL_add_a

Problem after removing memory leak

2008-04-01 Thread Wockenfuß , Frank
Hi all, I have written a class in C++ to easily access functions from OpenSSL from our products. In the constructor of my class I do the following lines of code: threadSetup(); OpenSSL_add_all_digests(); OpenSSL_add_all_ciphers(); OpenSSL_add_all_algorithms();