From: "Scott Miller" <[EMAIL PROTECTED]>
smiller> I am getting core dumps in the bn library when running under
smiller> purify. This happens when running bntest as well as in my
smiller> application, which both work fine when not running under purify.
[...]
smiller> Am I doing something wrong?
I recall something silly about free(NULL). How about you try purify
on the following program:
----------------------
#include <stdio.h>
#include <stdlib.h>
main()
{
free(NULL);
}
----------------------
Note that according to POSIX (IIRC), free(NULL) is perfectly OK.
--
Richard Levitte \ Spannv�gen 38, II \ [EMAIL PROTECTED]
Chairman@Stacken \ S-168 35 BROMMA \ T: +46-8-26 52 47
Redakteur@Stacken \ SWEDEN \ or +46-709-50 36 10
Procurator Odiosus Ex Infernis -- [EMAIL PROTECTED]
Member of the OpenSSL development team: http://www.openssl.org/
Software Engineer, Celo Communications: http://www.celocom.com/
Unsolicited commercial email is subject to an archival fee of $400.
See <http://www.stacken.kth.se/~levitte/mail/> for more info.
______________________________________________________________________
OpenSSL Project http://www.openssl.org
Development Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]