On Thu, Mar 15, 2012 at 8:23 AM, Ashutosh Tiwari
<sonu.tiwari2...@gmail.com>wrote:

> Hello All,
>
> I am using Sqlite 3_7_5 sqlite version,  my application is crashed in this
> function (sqlite3MemMalloc) below is the gdb out put -
>
> #0  0x004d2e3f in _int_malloc () from /lib/libc.so.6
> #1  0x004d4e97 in malloc () from /lib/libc.so.6
> #2  0x001825fe in sqlite3MemMalloc (nByte=5947712) at sqlite3.c:14291
> #3  0x00115f2a in mallocWithAlarm (n=560, pp=0xbfca46fc) at sqlite3.c:17800
> #4  0x001160f8 in sqlite3Malloc (n=560) at sqlite3.c:17833
> #5  0x001164c3 in sqlite3DbMallocRaw (db=0x96a86d8, n=159254784) at
> sqlite3.c:18164
> #6  0x001274e1 in sqlite3DbMallocZero (db=0x19, n=159254784) at
> sqlite3.c:18108
>    pOld=0x0, ppStmt=0xbfca4824, pzTail=0xbfca4828) at sqlite3.c:87878
>
> It seems that corruption is in sqlite library.
>

Usually this means that some other component of your application (not
SQLite) has corrupted the heap.  Try running your application using
valgrind - that will generally find the problem quickly.



>
> Does anyone knows the issue.
>
>
> Thanks
> Ashutosh
> _______________________________________________
> sqlite-users mailing list
> sqlite-users@sqlite.org
> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
>



-- 
D. Richard Hipp
d...@sqlite.org
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to