RE: [sqlite] sqlite 3.2.8 segmentation fault

2007-06-11 Thread Joe Wilson
This is a question for your OS vendor. --- "Rachmel, Nir (Nir)" <[EMAIL PROTECTED]> wrote: > I have run into a problem - using the same environment variables as I > did in the old version ( I am upgrading from 3.2.8 to the newest version > of 3.3.17), I am unable to compile succesfully. > Here is

RE: [sqlite] sqlite 3.2.8 segmentation fault

2007-06-11 Thread Rachmel, Nir (Nir)
/sqlite_new/avaya_build_target' make: *** [build] Error 2 Any ideas as to what is the problem? Thanks, Nir. -Original Message- From: Joe Wilson [mailto:[EMAIL PROTECTED] Sent: Sunday, June 10, 2007 6:10 PM To: sqlite-users@sqlite.org Subject: Re: [sqlite] sqlite 3.2.8 segmentation

Re: [sqlite] sqlite 3.2.8 segmentation fault

2007-06-10 Thread Joe Wilson
You're crashing in free(), which means your heap is corrupted. The cause of the corruption could be from anywhere - and not necessarily sqlite. It might be the victim of a previously corrupted heap. Try running your program through a memory checker like valgrind to see what it turns up. Also