How to Submit a patch

2007-04-12 Thread Nitin M
2007 18:56:40 +0100 Nitin M wrote: Darryl, What is your opinion on this finding? As you were also keen on knowing the result of this experimentation. :) What is you opinion? Here is the valgrind output for the above program for your reference. ==10877== ERROR SUMMARY: 0 errors from 0 contexts

Re: NEW FINDINGS-More Leaks-Memory Leaks in SSL_Library_init()

2007-04-05 Thread Nitin M
+0100 Nitin M wrote: Darryl, What is your opinion on this finding? As you were also keen on knowing the result of this experimentation. :) What is you opinion? Here is the valgrind output for the above program for your reference. ==10877== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 17

Re: Memory Leaks in SSL_Library_init()

2007-04-02 Thread Nitin M
From: Darryl Miles [EMAIL PROTECTED] Reply-To: openssl-dev@openssl.org To: openssl-dev@openssl.org Subject: Re: Memory Leaks in SSL_Library_init() Date: Mon, 02 Apr 2007 18:56:40 +0100 Nitin M wrote: Darryl, What is your opinion on this finding? As you were also keen on knowing the result

Re: Memory Leaks in SSL_Library_init()

2007-04-01 Thread Nitin M
on knowing the result of this experimentation. :) Thanks in advance regards -Nitin From: Nitin M [EMAIL PROTECTED] Reply-To: openssl-dev@openssl.org To: openssl-dev@openssl.org CC: [EMAIL PROTECTED] Subject: Re: Memory Leaks in SSL_Library_init() Date: Wed, 28 Mar 2007 04:14:17 + 1

Re: Memory Leaks in SSL_Library_init()

2007-03-27 Thread Nitin M
From: Darryl Miles [EMAIL PROTECTED] Reply-To: openssl-dev@openssl.org To: openssl-dev@openssl.org Subject: Re: Memory Leaks in SSL_Library_init() Date: Wed, 21 Mar 2007 11:12:38 + Nitin M wrote: Does this mean that in such scenario the application need not call SSL_library_init since

Re: Memory Leaks in SSL_Library_init()

2007-03-27 Thread Nitin M
Leaks in SSL_Library_init() Date: Wed, 28 Mar 2007 04:53:02 +0100 Nitin M wrote: I wrote a simple program like this to find out the possibility of a memory leak. The program goes like this. #includeopenssl/ssl.h int main() { SSL_library_init(); EVP_cleanup(); } when I run this programm

RE: Memory Leaks in SSL_Library_init()

2007-03-27 Thread Nitin M
So the point you are trying to make is, while the function would solve the purpose of freeing the compression methods, However the lock are not really required in the usage secnario of this function? From: David Schwartz [EMAIL PROTECTED] Reply-To: openssl-dev@openssl.org To:

RE: Memory Leaks in SSL_Library_init()

2007-03-21 Thread Nitin M
HI! Thanks again for highlighting those issues. What would be the best way for the application using those pluggins to avoid this issue of SSL_library_init()? regards -Nitin From: David Schwartz [EMAIL PROTECTED] Reply-To: openssl-dev@openssl.org To: openssl-dev@openssl.org Subject: RE:

RE: Memory Leaks in SSL_Library_init()

2007-03-21 Thread Nitin M
hi! If we say that the call SSL_library_init() would initialze some data structures which have process scope and are initialized only once. In such case what is the problem in having a *single* function which exacly cleans up those data structures at the time of process termination?

Re: Memory Leaks in SSL_Library_init()

2007-03-21 Thread Nitin M
Is it required to call SSL_library_init() if I only want to use some crypto functionalities? -Nitin From: Darryl Miles [EMAIL PROTECTED] Reply-To: openssl-dev@openssl.org To: openssl-dev@openssl.org Subject: Re: Memory Leaks in SSL_Library_init() Date: Wed, 21 Mar 2007 11:12:38 + Nitin

Re: Memory Leaks in SSL_Library_init()

2007-03-21 Thread Nitin M
Leaks in SSL_Library_init() Date: Wed, 21 Mar 2007 11:12:38 + Nitin M wrote: Does this mean that in such scenario the application need not call SSL_library_init since it does not need those extra initialisations and can achieve only the required initialisations with specific calls

RE: Memory Leaks in SSL_Library_init()

2007-03-20 Thread Nitin M
From: David Schwartz [EMAIL PROTECTED] Reply-To: openssl-dev@openssl.org To: openssl-dev@openssl.org Subject: RE: Memory Leaks in SSL_Library_init() Date: Tue, 20 Mar 2007 05:02:01 -0700 The function SSL_library_init() is observed to be introudcing memory leak in the application code.

Re: Memory Leaks in SSL_Library_init()

2007-03-20 Thread Nitin M
Hi! All, Thanks very much for your inouts on this. From: Darryl Miles [EMAIL PROTECTED] Reply-To: openssl-dev@openssl.org To: openssl-dev@openssl.org Subject: Re: Memory Leaks in SSL_Library_init() Date: Tue, 20 Mar 2007 17:18:40 + David Schwartz wrote: The function SSL_library_init()

RE: Memory Leaks in SSL_Library_init()

2007-03-20 Thread Nitin M
Hi! I have an example case where by the unused memoy allocated by SSL_library_init when not freed, would accumulate. There is an application which takes services from some of the libraries say A, B and C. These libraries are dynamically loaded and unloaded into the application as and when

Memory Leaks in SSL_Library_init()

2007-03-19 Thread Nitin M
Hi All! The function SSL_library_init() is observed to be introudcing memory leak in the application code. There is still some amount of memory leak left even after the series of cleanup calls suggested in the openssl FAQ. Can someone help understand that technically what is the problem in