[sqlite] Help: Required help/guidance for the segmentation fault in sqlite3 library to proceed further...

2010-09-24 Thread Borra, Kishore Babu
Hi, I require some help in getting the fix for some memory corruption issues, occurring while using the sqlite3 library. It would be very helpful, if you can guide to fix the below issues or atleast provide some info on this, to minimize the memory corruption, occurring mostly while

Re: [sqlite] Help: Required help/guidance for the segmentation fault in sqlite3 library to proceed further...

2010-09-24 Thread Pavel Ivanov
Apparently you are calling sqlite3_free twice on the same statement pointer. Try to add assigning to NULL after freeing and checking for NULL before freeing. Pavel On Thu, Sep 23, 2010 at 10:57 AM, Borra, Kishore Babu kishorebabu.bo...@adc.com wrote: Hi, I require some help in getting the

Re: [sqlite] Help: Required help/guidance for the segmentation fault in sqlite3 library to proceed further...

2010-09-24 Thread Dan Kennedy
On Sep 23, 2010, at 9:57 PM, Borra, Kishore Babu wrote: Hi, I require some help in getting the fix for some memory corruption issues, occurring while using the sqlite3 library. It would be very helpful, if you can guide to fix the below issues or atleast provide some info on this, to

Re: [sqlite] Help: Required help/guidance for the segmentation fault in sqlite3 library to proceed further...

2010-09-24 Thread Richard Hipp
On Fri, Sep 24, 2010 at 9:50 AM, Pavel Ivanov paiva...@gmail.com wrote: Apparently you are calling sqlite3_free twice on the same statement pointer. Try to add assigning to NULL after freeing and checking for NULL before freeing. The second step (checking for NULL before freeing) is